From d10fd520c775b687f9d65b7450ed6f2b4369c9d5 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Thu, 13 Oct 2022 15:19:20 -0700 Subject: [PATCH 01/13] Update the sdk build to target net8.0 --- Directory.Build.props | 2 +- global.json | 2 +- .../Microsoft.NET.Publish.Tests/PublishTestUtils.cs | 11 +++++++---- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index e66d5cf571da..99d66a8570a2 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -11,7 +11,7 @@ true false - net7.0 + net8.0 $(SdkTargetFramework) $(MSBuildThisFileDirectory)..\ - <_BlazorWebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net7.0 + <_BlazorWebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net8.0 <_BlazorWebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' != 'Core'">net472 <_BlazorWebAssemblySdkTasksAssembly>$(BlazorWebAssemblySdkDirectoryRoot)tools\$(_BlazorWebAssemblySdkTasksTFM)\Microsoft.NET.Sdk.BlazorWebAssembly.Tasks.dll - <_BlazorWebAssemblySdkToolAssembly>$(BlazorWebAssemblySdkDirectoryRoot)tools\net7.0\Microsoft.NET.Sdk.BlazorWebAssembly.Tool.dll + <_BlazorWebAssemblySdkToolAssembly>$(BlazorWebAssemblySdkDirectoryRoot)tools\net8.0\Microsoft.NET.Sdk.BlazorWebAssembly.Tool.dll 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 7e3dee3c110c..437a3c4aafc0 100644 --- a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets +++ b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets @@ -22,10 +22,10 @@ Copyright (c) .NET Foundation. All rights reserved. $(MSBuildThisFileDirectory)..\ - <_BlazorWebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net7.0 + <_BlazorWebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net8.0 <_BlazorWebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' != 'Core'">net472 <_BlazorWebAssemblySdkTasksAssembly>$(BlazorWebAssemblySdkDirectoryRoot)tools\$(_BlazorWebAssemblySdkTasksTFM)\Microsoft.NET.Sdk.BlazorWebAssembly.Tasks.dll - <_BlazorWebAssemblySdkToolAssembly>$(BlazorWebAssemblySdkDirectoryRoot)tools\net7.0\Microsoft.NET.Sdk.BlazorWebAssembly.Tool.dll + <_BlazorWebAssemblySdkToolAssembly>$(BlazorWebAssemblySdkDirectoryRoot)tools\net8.0\Microsoft.NET.Sdk.BlazorWebAssembly.Tool.dll diff --git a/src/RazorSdk/Targets/Sdk.Razor.CurrentVersion.targets b/src/RazorSdk/Targets/Sdk.Razor.CurrentVersion.targets index 3d2f6f391b22..1528ef7ea436 100644 --- a/src/RazorSdk/Targets/Sdk.Razor.CurrentVersion.targets +++ b/src/RazorSdk/Targets/Sdk.Razor.CurrentVersion.targets @@ -30,7 +30,7 @@ Copyright (c) .NET Foundation. All rights reserved. $(MSBuildThisFileDirectory)..\ $(RazorSdkDirectoryRoot)tasks\ - <_RazorSdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net7.0 + <_RazorSdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net8.0 <_RazorSdkTasksTFM Condition=" '$(_RazorSdkTasksTFM)' == ''">net472 $(RazorSdkBuildTasksDirectoryRoot)$(_RazorSdkTasksTFM)\Microsoft.NET.Sdk.Razor.Tasks.dll <_RazorSdkToolAssembly>$(RazorSdkDirectoryRoot)tools\rzc.dll From 17ea85703ccb73b5cb2c2fc4aca4ba69c69b2db5 Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Thu, 27 Oct 2022 12:36:40 +0100 Subject: [PATCH 06/13] Another TFM update --- src/WebSdk/Publish/Targets/Microsoft.NET.Sdk.Publish.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WebSdk/Publish/Targets/Microsoft.NET.Sdk.Publish.targets b/src/WebSdk/Publish/Targets/Microsoft.NET.Sdk.Publish.targets index beab531cc3f0..24a4350b5126 100644 --- a/src/WebSdk/Publish/Targets/Microsoft.NET.Sdk.Publish.targets +++ b/src/WebSdk/Publish/Targets/Microsoft.NET.Sdk.Publish.targets @@ -19,7 +19,7 @@ Copyright (C) Microsoft Corporation. All rights reserved. true - <_PublishTaskFramework Condition=" '$(MSBuildRuntimeType)' == 'Core'">net7.0 + <_PublishTaskFramework Condition=" '$(MSBuildRuntimeType)' == 'Core'">net8.0 <_PublishTaskFramework Condition=" '$(_PublishTaskFramework)' == ''">net472 <_PublishTasksDir Condition=" '$(_PublishTasksDir)'=='' ">$(MSBuildThisFileDirectory)..\tools\$(_PublishTaskFramework)\ <_PublishTaskAssemblyFullPath Condition=" '$(_PublishTaskAssemblyFullPath)'=='' ">$(_PublishTasksDir)Microsoft.NET.Sdk.Publish.Tasks.dll From 38f477d1059cea977d3ffdcda43ba5a4ff1edb44 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Mon, 7 Nov 2022 14:56:20 -0800 Subject: [PATCH 07/13] Update to a newer SDK. --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 057eda084e5e..50c0882cf639 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "tools": { - "dotnet": "8.0.100-alpha.1.22514.14", + "dotnet": "8.0.100-alpha.1.22556.1", "runtimes": { "dotnet": [ "$(VSRedistCommonNetCoreSharedFrameworkx6480PackageVersion)" From 885fa32c7a2c686377a947d9e235ff2780d40c18 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Tue, 8 Nov 2022 10:17:30 -0800 Subject: [PATCH 08/13] Fix the build extensions task location and fix an additional test. --- .../Microsoft.NET.Build.Extensions.targets | 2 +- src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tasks/Microsoft.NET.Build.Extensions.Tasks/msbuildExtensions/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets b/src/Tasks/Microsoft.NET.Build.Extensions.Tasks/msbuildExtensions/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets index 8fcf94540080..95ba0706d4c4 100644 --- a/src/Tasks/Microsoft.NET.Build.Extensions.Tasks/msbuildExtensions/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets +++ b/src/Tasks/Microsoft.NET.Build.Extensions.Tasks/msbuildExtensions/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets @@ -14,7 +14,7 @@ Copyright (c) .NET Foundation. All rights reserved. <_TargetFrameworkVersionWithoutV>$(TargetFrameworkVersion.TrimStart('vV')) - $(MSBuildThisFileDirectory)\tools\net7.0\Microsoft.NET.Build.Extensions.Tasks.dll + $(MSBuildThisFileDirectory)\tools\net8.0\Microsoft.NET.Build.Extensions.Tasks.dll $(MSBuildThisFileDirectory)\tools\net472\Microsoft.NET.Build.Extensions.Tasks.dll diff --git a/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs b/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs index 940b231fa79e..d7f2521b4dad 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs @@ -342,7 +342,7 @@ public void ExeProjectCanReferenceTestProject(string testTemplateName) var testConsoleProject = new TestProject("ConsoleApp") { IsExe = true, - TargetFrameworks = ToolsetInfo.CurrentTargetFramework, + TargetFrameworks = ToolsetInfo.NextTargetFramework, RuntimeIdentifier = EnvironmentInfo.GetCompatibleRid() }; From d0badf0d707ada724d635de135a5ded8fd5bbf41 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Thu, 10 Nov 2022 12:40:58 -0800 Subject: [PATCH 09/13] Disable a test affected by another bug. Fix our implicit defines behavior for the windows platform versions --- .../targets/Microsoft.NET.Sdk.BeforeCommon.targets | 2 +- .../GivenThatWeWantToBuildAWindowsDesktopProject.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.BeforeCommon.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.BeforeCommon.targets index 2ff2c1de9993..d9dc0fa0753b 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.BeforeCommon.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.BeforeCommon.targets @@ -226,7 +226,7 @@ Copyright (c) .NET Foundation. All rights reserved. Condition=" '$(DisableImplicitFrameworkDefines)' != 'true' and '$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0)) " > <_SupportedPlatformCompatibleVersions Include="@(SdkSupportedTargetPlatformVersion)" Condition=" %(Identity) != '' and $([MSBuild]::VersionLessThanOrEquals(%(Identity), $(TargetPlatformVersion))) " /> - <_ImplicitDefineConstant Include="@(_SupportedPlatformCompatibleVersions->'$(TargetPlatformIdentifier.ToUpper())%(Identity)_OR_GREATER'->Replace('.', '_'))" /> + <_ImplicitDefineConstant Include="@(_SupportedPlatformCompatibleVersions->Distinct()->'$(TargetPlatformIdentifier.ToUpper())%(Identity)_OR_GREATER'->Replace('.', '_'))" /> diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsDesktopProject.cs b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsDesktopProject.cs index 679c7047c76c..d45edd463e2c 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsDesktopProject.cs +++ b/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsDesktopProject.cs @@ -193,7 +193,7 @@ public void It_fails_if_windows_target_platform_version_is_invalid() .HaveStdOutContaining("NETSDK1140"); } - [WindowsOnlyTheory] + [WindowsOnlyTheory(Skip="https://github.com/dotnet/sdk/pull/29009")] [InlineData(true)] [InlineData(false)] public void It_succeeds_if_windows_target_platform_version_does_not_have_trailing_zeros(bool setInTargetframework) From 4da0821bba428f83d74db05fed7e4d5ad22a6c46 Mon Sep 17 00:00:00 2001 From: Gang Wang Date: Mon, 14 Nov 2022 10:40:39 +0000 Subject: [PATCH 10/13] Update verified content following newly added Playwright templates in test project templates package --- ...DotnetNewCompleteTests.CanDoTabCompletion.Linux.verified.txt | 2 ++ .../DotnetNewCompleteTests.CanDoTabCompletion.OSX.verified.txt | 2 ++ ...tnetNewCompleteTests.CanDoTabCompletion.Windows.verified.txt | 2 ++ ....BasicTest_WhenLegacyCommandIsUsed_common.Linux.verified.txt | 2 ++ ...ts.BasicTest_WhenLegacyCommandIsUsed_common.OSX.verified.txt | 2 ++ ...asicTest_WhenLegacyCommandIsUsed_common.Windows.verified.txt | 2 ++ ...ListTests.BasicTest_WhenListCommandIsUsed.Linux.verified.txt | 2 ++ ...ewListTests.BasicTest_WhenListCommandIsUsed.OSX.verified.txt | 2 ++ ...stTests.BasicTest_WhenListCommandIsUsed.Windows.verified.txt | 2 ++ 9 files changed, 18 insertions(+) diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Linux.verified.txt b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Linux.verified.txt index 5e29de938dfe..3d337fc19054 100644 --- a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Linux.verified.txt +++ b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Linux.verified.txt @@ -10,9 +10,11 @@ gitignore globaljson grpc mstest +mstest-playwright mvc nugetconfig nunit +NUnit-playwright nunit-test page proto diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.OSX.verified.txt b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.OSX.verified.txt index a294bc619c0c..b9d2896ea39f 100644 --- a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.OSX.verified.txt +++ b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.OSX.verified.txt @@ -10,9 +10,11 @@ gitignore globaljson grpc mstest +mstest-playwright mvc nugetconfig nunit +NUnit-playwright nunit-test page proto diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Windows.verified.txt b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Windows.verified.txt index 4927c3cb9381..83a667f748b1 100644 --- a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Windows.verified.txt +++ b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Windows.verified.txt @@ -10,9 +10,11 @@ gitignore globaljson grpc mstest +mstest-playwright mvc nugetconfig nunit +NUnit-playwright nunit-test page proto diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Linux.verified.txt b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Linux.verified.txt index ef49a5116426..1857d16e5fb8 100644 --- a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Linux.verified.txt +++ b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Linux.verified.txt @@ -23,12 +23,14 @@ dotnet gitignore file gitignore Co Dotnet local tool manifest file tool-manifest Config EditorConfig file editorconfig Config global.json file globaljson Config +MSTest Playwright Test Project mstest-playwright [C#] Test/MSTest/Playwright MSTest Test Project mstest [C#],F#,VB Test/MSTest MVC ViewImports viewimports [C#] Web/ASP.NET MVC ViewStart viewstart [C#] Web/ASP.NET NuGet Config nugetconfig Config NUnit 3 Test Item nunit-test [C#],F#,VB Test/NUnit NUnit 3 Test Project nunit [C#],F#,VB Test/NUnit +NUnit Playwright Test Project NUnit-playwright [C#] Test/NUnit/Playwright Protocol Buffer File proto Web/gRPC Razor Class Library razorclasslib [C#] Web/Razor/Library Razor Component razorcomponent [C#] Web/ASP.NET diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.OSX.verified.txt b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.OSX.verified.txt index ef49a5116426..1857d16e5fb8 100644 --- a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.OSX.verified.txt +++ b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.OSX.verified.txt @@ -23,12 +23,14 @@ dotnet gitignore file gitignore Co Dotnet local tool manifest file tool-manifest Config EditorConfig file editorconfig Config global.json file globaljson Config +MSTest Playwright Test Project mstest-playwright [C#] Test/MSTest/Playwright MSTest Test Project mstest [C#],F#,VB Test/MSTest MVC ViewImports viewimports [C#] Web/ASP.NET MVC ViewStart viewstart [C#] Web/ASP.NET NuGet Config nugetconfig Config NUnit 3 Test Item nunit-test [C#],F#,VB Test/NUnit NUnit 3 Test Project nunit [C#],F#,VB Test/NUnit +NUnit Playwright Test Project NUnit-playwright [C#] Test/NUnit/Playwright Protocol Buffer File proto Web/gRPC Razor Class Library razorclasslib [C#] Web/Razor/Library Razor Component razorcomponent [C#] Web/ASP.NET diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Windows.verified.txt b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Windows.verified.txt index fb56cd3a297c..3e585f1a52d7 100644 --- a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Windows.verified.txt +++ b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Windows.verified.txt @@ -23,12 +23,14 @@ dotnet gitignore file gitignore C Dotnet local tool manifest file tool-manifest Config EditorConfig file editorconfig Config global.json file globaljson Config +MSTest Playwright Test Project mstest-playwright [C#] Test/MSTest/Playwright MSTest Test Project mstest [C#],F#,VB Test/MSTest MVC ViewImports viewimports [C#] Web/ASP.NET MVC ViewStart viewstart [C#] Web/ASP.NET NuGet Config nugetconfig Config NUnit 3 Test Item nunit-test [C#],F#,VB Test/NUnit NUnit 3 Test Project nunit [C#],F#,VB Test/NUnit +NUnit Playwright Test Project NUnit-playwright [C#] Test/NUnit/Playwright Protocol Buffer File proto Web/gRPC Razor Class Library razorclasslib [C#] Web/Razor/Library Razor Component razorcomponent [C#] Web/ASP.NET diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Linux.verified.txt b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Linux.verified.txt index 71ac27f5f57c..fee62a21a57f 100644 --- a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Linux.verified.txt +++ b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Linux.verified.txt @@ -19,12 +19,14 @@ dotnet gitignore file gitignore Co Dotnet local tool manifest file tool-manifest Config EditorConfig file editorconfig Config global.json file globaljson Config +MSTest Playwright Test Project mstest-playwright [C#] Test/MSTest/Playwright MSTest Test Project mstest [C#],F#,VB Test/MSTest MVC ViewImports viewimports [C#] Web/ASP.NET MVC ViewStart viewstart [C#] Web/ASP.NET NuGet Config nugetconfig Config NUnit 3 Test Item nunit-test [C#],F#,VB Test/NUnit NUnit 3 Test Project nunit [C#],F#,VB Test/NUnit +NUnit Playwright Test Project NUnit-playwright [C#] Test/NUnit/Playwright Protocol Buffer File proto Web/gRPC Razor Class Library razorclasslib [C#] Web/Razor/Library Razor Component razorcomponent [C#] Web/ASP.NET diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.OSX.verified.txt b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.OSX.verified.txt index 71ac27f5f57c..fee62a21a57f 100644 --- a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.OSX.verified.txt +++ b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.OSX.verified.txt @@ -19,12 +19,14 @@ dotnet gitignore file gitignore Co Dotnet local tool manifest file tool-manifest Config EditorConfig file editorconfig Config global.json file globaljson Config +MSTest Playwright Test Project mstest-playwright [C#] Test/MSTest/Playwright MSTest Test Project mstest [C#],F#,VB Test/MSTest MVC ViewImports viewimports [C#] Web/ASP.NET MVC ViewStart viewstart [C#] Web/ASP.NET NuGet Config nugetconfig Config NUnit 3 Test Item nunit-test [C#],F#,VB Test/NUnit NUnit 3 Test Project nunit [C#],F#,VB Test/NUnit +NUnit Playwright Test Project NUnit-playwright [C#] Test/NUnit/Playwright Protocol Buffer File proto Web/gRPC Razor Class Library razorclasslib [C#] Web/Razor/Library Razor Component razorcomponent [C#] Web/ASP.NET diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Windows.verified.txt b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Windows.verified.txt index 41749eacffbc..5538c213896e 100644 --- a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Windows.verified.txt +++ b/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Windows.verified.txt @@ -19,12 +19,14 @@ dotnet gitignore file gitignore C Dotnet local tool manifest file tool-manifest Config EditorConfig file editorconfig Config global.json file globaljson Config +MSTest Playwright Test Project mstest-playwright [C#] Test/MSTest/Playwright MSTest Test Project mstest [C#],F#,VB Test/MSTest MVC ViewImports viewimports [C#] Web/ASP.NET MVC ViewStart viewstart [C#] Web/ASP.NET NuGet Config nugetconfig Config NUnit 3 Test Item nunit-test [C#],F#,VB Test/NUnit NUnit 3 Test Project nunit [C#],F#,VB Test/NUnit +NUnit Playwright Test Project NUnit-playwright [C#] Test/NUnit/Playwright Protocol Buffer File proto Web/gRPC Razor Class Library razorclasslib [C#] Web/Razor/Library Razor Component razorcomponent [C#] Web/ASP.NET From 9826dfe81808821b27eec7c9d8b0e62ffef3ff67 Mon Sep 17 00:00:00 2001 From: jacalvar Date: Wed, 16 Nov 2022 18:27:27 +0100 Subject: [PATCH 11/13] [ASP.NET] Remove versions from baselines (#29093) * Updates the way the baselines are compared to generate a template of the baselines from the current manifest and compare it against the existing template instead of applying the current versions to the baseline and comparing it against the generated manifest. * Removes all the versions and hashes from all the files Wed generate. * Splits the code for generating and comparing the baselines into their own classes for better maintenance. * Updates the baselines to reflect the new format. --- src/RazorSdk/update-test-baselines.ps1 | 7 +- .../BlazorLegacyIntegrationTest60.cs | 2 +- .../BlazorWasmBaselineTests.cs | 31 - ...lazorWasmStaticWebAssetsIntegrationTest.cs | 58 +- ...oft.NET.Sdk.BlazorWebAssembly.Tests.csproj | 2 + ...ootJsonManifest.Build.staticwebassets.json | 2816 +++++++------- ...iesAreCopiedToBuildOutput.Build.files.json | 1186 +++--- ...edToBuildOutput.Build.staticwebassets.json | 3386 ++++++++--------- ...duleTargetPaths.Build.staticwebassets.json | 2878 +++++++------- ...izeBlazorInitialization.Publish.files.json | 980 +++-- ...nitialization.Publish.staticwebassets.json | 1524 ++++---- ...tBuildAndPublishModules.Publish.files.json | 967 +++-- ...ublishModules.Publish.staticwebassets.json | 1504 ++++---- ...izeBlazorInitialization.Publish.files.json | 710 ++-- ...nitialization.Publish.staticwebassets.json | 1582 ++++---- .../Publish60Hosted_Works.Publish.files.json | 122 +- ...0Hosted_Works.Publish.staticwebassets.json | 854 ++--- ...nBlazorBootJsonManifest.Publish.files.json | 967 +++-- ...tJsonManifest.Publish.staticwebassets.json | 1504 ++++---- ...ityPublish_Hosted_Works.Publish.files.json | 294 +- ..._Hosted_Works.Publish.staticwebassets.json | 20 +- ...Assets_BuildMinimal_Works.Build.files.json | 1012 +++-- ...ldMinimal_Works.Build.staticwebassets.json | 2828 +++++++------- ...Assets_Build_Hosted_Works.Build.files.json | 819 ++-- ...ld_Hosted_Works.Build.staticwebassets.json | 2866 +++++++------- ...rdLibrary_Works.Build.staticwebassets.json | 2436 ++++++------ ...ts_PublishMinimal_Works.Publish.files.json | 976 +++-- ...Minimal_Works.Publish.staticwebassets.json | 1532 ++++---- ...mentationFiles_AsAssets.Publish.files.json | 696 ++-- ...iles_AsAssets.Publish.staticwebassets.json | 1560 ++++---- ...ts_Publish_Hosted_Works.Publish.files.json | 696 ++-- ..._Hosted_Works.Publish.staticwebassets.json | 1560 ++++---- .../WasmBuildIntegrationTest.cs | 2 +- .../WasmJsModulesIntegrationTests.cs | 8 +- .../AspNetSdkBaselineTest.cs | 510 +-- .../JsModulesIntegrationTest.cs | 22 +- .../ScopedCssIntegrationTests.cs | 10 +- .../StaticWebAssetsBaselineComparer.cs | 251 ++ .../StaticWebAssetsBaselineFactory.cs | 280 ++ ...sScopedCssFiles.Build.staticwebassets.json | 64 +- ...esPublishAssets.Build.staticwebassets.json | 64 +- ...tAndCopiesPublishAssets.Publish.files.json | 32 +- ...PublishAssets.Publish.staticwebassets.json | 64 +- ...tToOutputFolder.Build.staticwebassets.json | 64 +- ...alizersFromClassLibraries.Build.files.json | 1 - ...mClassLibraries.Build.staticwebassets.json | 76 +- ...tToOutputFolder.Build.staticwebassets.json | 64 +- ..._NoDependencies.Build.staticwebassets.json | 64 +- ...1ClassLibraries.Build.staticwebassets.json | 66 +- ...esPublishAssets.Build.staticwebassets.json | 12 +- ...tAndCopiesPublishAssets.Publish.files.json | 5 +- ...PublishAssets.Publish.staticwebassets.json | 12 +- ...BasedOnPatterns.Build.staticwebassets.json | 20 +- ...enHasNotChanged.Build.staticwebassets.json | 12 +- ...tToOutputFolder.Build.staticwebassets.json | 12 +- ...WhenFilesChange.Build.staticwebassets.json | 12 +- ...sChange_Updated.Build.staticwebassets.json | 18 +- ...ermediateOutput.Build.staticwebassets.json | 12 +- ...esPublishAssets.Build.staticwebassets.json | 64 +- ...tAndCopiesPublishAssets.Publish.files.json | 12 +- ...PublishAssets.Publish.staticwebassets.json | 64 +- ...aryInitializers.Build.staticwebassets.json | 72 +- ...ish_LibraryInitializers.Publish.files.json | 27 +- ...yInitializers.Publish.staticwebassets.json | 72 +- ...esPublishAssets.Build.staticwebassets.json | 64 +- ...tAndCopiesPublishAssets.Publish.files.json | 32 +- ...PublishAssets.Publish.staticwebassets.json | 64 +- ...heRightLocation.Build.staticwebassets.json | 76 +- ...ssetsToTheRightLocation.Publish.files.json | 41 +- ...RightLocation.Publish.staticwebassets.json | 76 +- ...esPublishAssets.Build.staticwebassets.json | 64 +- ...tAndCopiesPublishAssets.Publish.files.json | 22 +- ...PublishAssets.Publish.staticwebassets.json | 64 +- ...esPublishAssets.Build.staticwebassets.json | 64 +- ...tAndCopiesPublishAssets.Publish.files.json | 32 +- ...PublishAssets.Publish.staticwebassets.json | 64 +- ...1ClassLibraries.Build.staticwebassets.json | 66 +- ...bAssetsV1ClassLibraries.Publish.files.json | 37 +- ...lassLibraries.Publish.staticwebassets.json | 66 +- ...esPublishAssets.Build.staticwebassets.json | 12 +- ...tAndCopiesPublishAssets.Publish.files.json | 5 +- ...PublishAssets.Publish.staticwebassets.json | 12 +- ...esPublishAssets.Build.staticwebassets.json | 12 +- ...tAndCopiesPublishAssets.Publish.files.json | 4 +- ...PublishAssets.Publish.staticwebassets.json | 12 +- ...esPublishAssets.Build.staticwebassets.json | 12 +- ...tAndCopiesPublishAssets.Publish.files.json | 5 +- ...PublishAssets.Publish.staticwebassets.json | 12 +- ...undleToTheRightLocation.Publish.files.json | 11 +- ...RightLocation.Publish.staticwebassets.json | 22 +- ...tToOutputFolder.Build.staticwebassets.json | 12 +- ...tFolder_Rebuild.Build.staticwebassets.json | 12 +- ...ible_WithPreviousVersions.Build.files.json | 2 +- ...reviousVersions.Build.staticwebassets.json | 72 +- ...le_WithPreviousVersions.Publish.files.json | 40 +- ...viousVersions.Publish.staticwebassets.json | 72 +- .../StaticWebAssetsIntegrationTest.cs | 103 +- 97 files changed, 22011 insertions(+), 19696 deletions(-) create mode 100644 src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs create mode 100644 src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs diff --git a/src/RazorSdk/update-test-baselines.ps1 b/src/RazorSdk/update-test-baselines.ps1 index 38c7e9553632..800bed8e8f4c 100644 --- a/src/RazorSdk/update-test-baselines.ps1 +++ b/src/RazorSdk/update-test-baselines.ps1 @@ -1,6 +1,11 @@ +param([switch] $Validate) $RepoRoot= Resolve-Path "$PSScriptRoot/../.." $TestProjects = "Microsoft.NET.Sdk.Razor.Tests", "Microsoft.NET.Sdk.BlazorWebAssembly.Tests" | ForEach-Object { Join-Path -Path "$RepoRoot/src/Tests/" -ChildPath $_ }; -$TestProjects | ForEach-Object { dotnet test --no-build -l "console;verbosity=normal" $_ -e ASPNETCORE_TEST_BASELINES=true --filter AspNetCore=BaselineTest } +if($Validate){ + $TestProjects | ForEach-Object { dotnet test --no-build -l "console;verbosity=normal" $_ --filter AspNetCore=BaselineTest } +}else { + $TestProjects | ForEach-Object { dotnet test --no-build -l "console;verbosity=normal" $_ -e ASPNETCORE_TEST_BASELINES=true --filter AspNetCore=BaselineTest } +} diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest60.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest60.cs index a5e1790b1c7e..6bf45b7d99c2 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest60.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest60.cs @@ -90,7 +90,7 @@ public void Publish60Hosted_Works() AssertManifest(manifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, publishOutputDirectory.FullName, intermediateOutputPath); } diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs index ea9cc7c00d69..870bbca1e645 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs @@ -17,37 +17,6 @@ public class BlazorWasmBaselineTests : AspNetSdkBaselineTest { public BlazorWasmBaselineTests(ITestOutputHelper log, bool generateBaselines) : base(log, generateBaselines) { - PathTemplatizer = TemplatizeCompressedAssets; - } - - private string TemplatizeCompressedAssets(StaticWebAsset asset, string originalValue, StaticWebAsset relatedAsset) - { - if (!asset.IsAlternativeAsset() && Path.GetExtension(asset.Identity) != ".gz") - { - return null; - } - - if (asset.RelatedAsset == originalValue) - { - return null; - } - - if (originalValue.Replace("[[CustomPackageVersion]]", "__CustomVersion__").Replace("[[hash]]", "__Hash__").Contains("[[")) - { - return null; - } - - var result = asset.Identity.Contains("[[") ? asset.Identity : Path.Combine(Path.GetDirectoryName(asset.Identity), "[[" + asset.RelativePath + "]]"); - - if (GenerateBaselines) - { - result = Regex.Replace(result, DotNetJSHashRegexPattern, DotNetJSHashTemplate); - return result.Replace(RuntimeVersion, "${RuntimeVersion}").Replace(DefaultPackageVersion, "${PackageVersion}"); - } - else - { - return result.Replace("${RuntimeVersion}", RuntimeVersion).Replace("${PackageVersion}", DefaultPackageVersion); - } } protected override string EmbeddedResourcePrefix => string.Join('.', "Microsoft.NET.Sdk.BlazorWebAssembly.Tests", "StaticWebAssetsBaselines"); diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs index dcca33136495..016d71ff50ee 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs @@ -2,11 +2,8 @@ // 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.Text.RegularExpressions; using System.Xml.Linq; using Microsoft.AspNetCore.Razor.Tasks; using Microsoft.NET.TestFramework.Assertions; @@ -18,12 +15,8 @@ namespace Microsoft.NET.Sdk.BlazorWebAssembly.Tests { public class BlazorWasmStaticWebAssetsIntegrationTest : BlazorWasmBaselineTests { - private static readonly string DotNet5JSRegexPattern = "dotnet\\.5\\.[0-9]+\\.[0-9]+\\.js"; - private readonly string DotNet5JSTemplate; - public BlazorWasmStaticWebAssetsIntegrationTest(ITestOutputHelper log) : base(log, GenerateBaselines) { - DotNet5JSTemplate = $"dotnet.{RuntimeVersion}.js"; } [Fact] @@ -55,7 +48,7 @@ public void StaticWebAssets_BuildMinimal_Works() new FileInfo(finalPath).Should().Exist(); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, outputPath, intermediateOutputPath); } @@ -85,7 +78,7 @@ public void StaticWebAssets_PublishMinimal_Works() AssertManifest(manifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, publishPath, intermediateOutputPath); } @@ -116,7 +109,7 @@ public void StaticWebAssets_Build_Hosted_Works() new FileInfo(finalPath).Should().Exist(); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, outputPath, intermediateOutputPath); } @@ -147,7 +140,7 @@ public void StaticWebAssets_Publish_Hosted_Works() AssertManifest(manifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, publishPath, intermediateOutputPath); } @@ -178,12 +171,12 @@ public void StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets AssertManifest(manifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, publishPath, intermediateOutputPath); } - [Fact] + [Fact(Skip = "https://github.com/dotnet/sdk/issues/29111")] public void StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works() { // Arrange @@ -221,24 +214,6 @@ public void StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works() new FileInfo(path).Should().Exist(); var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)); - // We have to special case this test given we are forcing `blazorwasm` to be a `net5` project above. - // Given this, the `dotnet.*.js` file produced will be a dotnet.5.*.*.js file in line with the TFM and not the SDK (which is .NET 6 or beyond). - // This conflicts with our assumptions throughout the rest of the test suite that the SDK version matches the TFM. - // To minimize special casing throughout the entire test suite, we just update this particular test's assets to reflect the SDK version. - var numFilesUpdated = 0; - foreach (var f in manifest.Assets) - { - if (Regex.Match(f.RelativePath, DotNet5JSRegexPattern).Success) - { - f.Identity = Regex.Replace(f.Identity, DotNet5JSRegexPattern, DotNet5JSTemplate); - f.RelativePath = Regex.Replace(f.RelativePath, DotNet5JSRegexPattern, DotNet5JSTemplate); - f.OriginalItemSpec = Regex.Replace(f.OriginalItemSpec, DotNet5JSRegexPattern, DotNet5JSTemplate); - - numFilesUpdated++; - } - } - Assert.Equal(2, numFilesUpdated); - AssertManifest(manifest, LoadBuildManifest()); // GenerateStaticWebAssetsManifest should copy the file to the output folder. @@ -246,7 +221,7 @@ public void StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works() new FileInfo(finalPath).Should().Exist(); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, outputPath, intermediateOutputPath); } @@ -293,27 +268,10 @@ public void StaticWebAssets_BackCompatibilityPublish_Hosted_Works() new FileInfo(path).Should().Exist(); var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)); - // We have to special case this test given we are forcing `blazorwasm` to be a `net5` project above. - // Given this, the `dotnet.*.js` file produced will be a dotnet.5.*.*.js file in line with the TFM and not the SDK (which is .NET 6 or beyond). - // This conflicts with our assumptions throughout the rest of the test suite that the SDK version matches the TFM. - // To minimize special casing throughout the entire test suite, we just update this particular test's assets to reflect the SDK version. - var numFilesUpdated = 0; - var frameworkFolder = Path.Combine(publishPath, "wwwroot", "_framework"); - var frameworkFolderFiles = Directory.GetFiles(frameworkFolder, "*", new EnumerationOptions { RecurseSubdirectories = false }); - foreach (var f in frameworkFolderFiles) - { - if (Regex.Match(f, DotNet5JSRegexPattern).Success) - { - File.Move(f, Regex.Replace(f, DotNet5JSRegexPattern, DotNet5JSTemplate)); - numFilesUpdated++; - } - } - Assert.Equal(3, numFilesUpdated); - AssertManifest(manifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, publishPath, intermediateOutputPath); } diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj index 7994d45912f9..ef699dfc3501 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj @@ -37,6 +37,8 @@ + + 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 8adaf12539be..b2abfd2c5de9 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 @@ -10,17 +10,17 @@ { "Name": "blazorwasm-minimal\\wwwroot", "Source": "blazorwasm-minimal", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -31,13 +31,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -48,13 +48,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -65,13 +65,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -82,13 +82,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -99,13 +99,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -116,13 +116,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -133,13 +133,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -150,13 +150,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -167,13 +167,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -184,13 +184,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -201,13 +201,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -218,13 +218,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -235,13 +235,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -252,13 +252,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -269,13 +269,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -286,13 +286,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -303,13 +303,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -320,13 +320,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -337,13 +337,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -354,13 +354,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -371,13 +371,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -388,13 +388,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -405,13 +405,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -422,13 +422,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -439,13 +439,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -456,13 +456,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -473,13 +473,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -490,13 +490,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.AppContext.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -507,13 +507,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Buffers.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -524,13 +524,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -541,13 +541,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -558,13 +558,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -575,13 +575,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -592,13 +592,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -609,13 +609,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -626,13 +626,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -643,13 +643,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -660,13 +660,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -677,13 +677,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -694,13 +694,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -711,13 +711,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -728,13 +728,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Console.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -745,13 +745,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -762,13 +762,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.Common.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -779,13 +779,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -796,13 +796,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -813,13 +813,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -830,13 +830,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -847,13 +847,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -864,13 +864,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -881,13 +881,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -898,13 +898,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -915,13 +915,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -932,13 +932,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -949,13 +949,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -966,13 +966,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -983,13 +983,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1000,13 +1000,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Drawing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1017,13 +1017,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1034,13 +1034,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1051,13 +1051,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Formats.Tar.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1068,13 +1068,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1085,13 +1085,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1102,13 +1102,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1119,13 +1119,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1136,13 +1136,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1153,13 +1153,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1170,13 +1170,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1187,13 +1187,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1204,13 +1204,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1221,13 +1221,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1238,13 +1238,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1255,13 +1255,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1272,13 +1272,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1289,13 +1289,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1306,13 +1306,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1323,13 +1323,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1340,13 +1340,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Pipes.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1357,13 +1357,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1374,13 +1374,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1391,13 +1391,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1408,13 +1408,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1425,13 +1425,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1442,13 +1442,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1459,13 +1459,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Memory.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1476,13 +1476,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1493,13 +1493,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Http.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1510,13 +1510,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1527,13 +1527,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Mail.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1544,13 +1544,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1561,13 +1561,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1578,13 +1578,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Ping.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1595,13 +1595,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1612,13 +1612,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Quic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1629,13 +1629,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Requests.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1646,13 +1646,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1663,13 +1663,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1680,13 +1680,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Sockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1697,13 +1697,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebClient.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1714,13 +1714,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1731,13 +1731,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1748,13 +1748,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1765,13 +1765,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1782,13 +1782,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1799,13 +1799,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1816,13 +1816,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1833,13 +1833,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ObjectModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Build", @@ -1853,10 +1853,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1867,13 +1867,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1884,13 +1884,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Uri.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1901,13 +1901,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -1918,13 +1918,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -1935,13 +1935,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -1952,13 +1952,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -1969,13 +1969,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -1986,13 +1986,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2003,13 +2003,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2020,13 +2020,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2037,13 +2037,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2054,13 +2054,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2071,13 +2071,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2088,13 +2088,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.Reader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2105,13 +2105,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2122,13 +2122,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.Writer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2139,13 +2139,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2156,13 +2156,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2173,13 +2173,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2190,13 +2190,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2207,13 +2207,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2224,13 +2224,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2241,13 +2241,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2258,13 +2258,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2275,13 +2275,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2292,13 +2292,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2309,13 +2309,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2326,13 +2326,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2343,13 +2343,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2360,13 +2360,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2377,13 +2377,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2394,13 +2394,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2411,13 +2411,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2428,13 +2428,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Claims.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2445,13 +2445,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2462,13 +2462,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2479,13 +2479,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2496,13 +2496,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2513,13 +2513,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2530,13 +2530,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2547,13 +2547,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2564,13 +2564,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2581,13 +2581,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2598,13 +2598,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Principal.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2615,13 +2615,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.SecureString.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2632,13 +2632,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2649,13 +2649,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2666,13 +2666,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ServiceProcess.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2683,13 +2683,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2700,13 +2700,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2717,13 +2717,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2734,13 +2734,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2751,13 +2751,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2768,13 +2768,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2785,13 +2785,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Channels.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2802,13 +2802,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2819,13 +2819,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2836,13 +2836,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2853,13 +2853,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2870,13 +2870,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2887,13 +2887,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Thread.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2904,13 +2904,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -2921,13 +2921,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Timer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -2938,13 +2938,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -2955,13 +2955,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Transactions.Local.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -2972,13 +2972,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Transactions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -2989,13 +2989,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ValueTuple.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3006,13 +3006,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3023,13 +3023,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3040,13 +3040,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3057,13 +3057,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3074,13 +3074,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3091,13 +3091,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3108,13 +3108,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3125,13 +3125,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3142,13 +3142,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XPath.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3159,13 +3159,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3176,13 +3176,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3193,13 +3193,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3210,13 +3210,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3227,13 +3227,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\WindowsBase.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -3247,10 +3247,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3261,13 +3261,13 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Build", @@ -3281,10 +3281,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb", "AssetKind": "Build", @@ -3298,12 +3298,12 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -3315,10 +3315,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Build", @@ -3332,10 +3332,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Build", @@ -3349,10 +3349,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Build", @@ -3366,10 +3366,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Build", @@ -3383,10 +3383,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Build", @@ -3400,10 +3400,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Build", @@ -3417,10 +3417,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3431,13 +3431,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\mscorlib.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3448,3430 +3448,3430 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\netstandard.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Tar.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "blazorwasm-minimal.lib.module.js", "AssetKind": "All", @@ -6885,10 +6885,10 @@ "OriginalItemSpec": "wwwroot\\blazorwasm-minimal.lib.module.js" }, { - "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\wwwroot\\css\\app.css", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "All", @@ -6902,10 +6902,10 @@ "OriginalItemSpec": "wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\wwwroot\\index.html", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", 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 80016e7e56ae..798daf4ebe55 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 @@ -1,714 +1,950 @@ [ "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz", + "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz", "${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.CSharp.resources.dll.gz", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\custom-service-worker-assets.js", - "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\serviceworkers\\my-service-worker.js", - "${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.${RuntimeVersion}.[[hash]].js.gz]]", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.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}\\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.timezones.blat.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}\\custom-service-worker-assets.js.build", "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\serviceworkers\\my-service-worker.js", - "${ProjectPath}\\blazorwasm\\wwwroot\\js\\LinkedScript.js" + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.CSharp.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\System.AppContext.dll", + "${OutputPath}\\wwwroot\\_framework\\System.AppContext.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Immutable.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Core.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Core.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Data.Common.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Data.Common.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Data.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Data.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Process.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Asn1.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Tar.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Calendars.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Parallel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Queryable.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.HttpListener.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Mail.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Mail.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NameResolution.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Ping.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Ping.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Quic.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Quic.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Requests.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Requests.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Security.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Security.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.ServicePoint.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Sockets.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebClient.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebProxy.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.Vectors.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Reader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Writer.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Handles.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Numerics.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.AccessControl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.SecureString.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceModel.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceProcess.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Channels.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Overlapped.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Thread.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Timer.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.Local.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ValueTuple.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ValueTuple.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Web.HttpUtility.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Windows.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Windows.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Serialization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XDocument.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll", + "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "${OutputPath}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", + "${OutputPath}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\mscorlib.dll", + "${OutputPath}\\wwwroot\\_framework\\mscorlib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", + "${OutputPath}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js" ] \ No newline at end of file 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 3a84ce04aa29..14b1d5d7ed74 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 @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\classlibrarywithsatelliteassemblies\\classlibrarywithsatelliteassemblies.csproj", + "Identity": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\classlibrarywithsatelliteassemblies.csproj", "Version": 2, "Source": "classlibrarywithsatelliteassemblies", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj", + "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj", "Version": 2, "Source": "RazorClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "RazorClassLibrary\\wwwroot", "Source": "RazorClassLibrary", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "Pattern": "**" }, { "Name": "blazorwasm\\wwwroot", "Source": "blazorwasm", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\LinkBaseToWebRoot\\js\\LinkedScript.js", + "Identity": "${ProjectPath}\\LinkBaseToWebRoot\\js\\LinkedScript.js", "SourceId": "blazorwasm", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "js/LinkedScript.js", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "..\\LinkBaseToWebRoot\\js\\LinkedScript.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\LinkToWebRoot\\css\\app.css", + "Identity": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css", "SourceId": "blazorwasm", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "Publish", @@ -81,10 +81,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -95,13 +95,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -112,13 +112,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -129,13 +129,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -146,13 +146,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -163,13 +163,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -180,13 +180,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -197,13 +197,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.CSharp.dll", "AssetKind": "Build", @@ -214,13 +214,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.CodeAnalysis.CSharp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.CodeAnalysis.CSharp.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.dll", "AssetKind": "Build", @@ -231,13 +231,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.CodeAnalysis.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.CodeAnalysis.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -248,13 +248,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -265,13 +265,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -282,13 +282,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -299,13 +299,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -316,13 +316,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -333,13 +333,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -350,13 +350,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -367,13 +367,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -384,13 +384,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -401,13 +401,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -418,13 +418,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -435,13 +435,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -452,13 +452,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -469,13 +469,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -486,13 +486,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -503,13 +503,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -520,13 +520,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -537,13 +537,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -554,13 +554,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -571,13 +571,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Build", @@ -588,13 +588,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb", "AssetKind": "Build", @@ -605,13 +605,13 @@ "AssetTraitValue": "symbol", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -622,13 +622,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.AppContext.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -639,13 +639,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Buffers.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -656,13 +656,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -673,13 +673,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -690,13 +690,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -707,13 +707,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -724,13 +724,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -741,13 +741,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -758,13 +758,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -775,13 +775,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -792,13 +792,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -809,13 +809,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -826,13 +826,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -843,13 +843,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -860,13 +860,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Console.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -877,13 +877,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -894,13 +894,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.Common.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -911,13 +911,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -928,13 +928,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -945,13 +945,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -962,13 +962,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -979,13 +979,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -996,13 +996,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -1013,13 +1013,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -1030,13 +1030,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -1047,13 +1047,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -1064,13 +1064,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -1081,13 +1081,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -1098,13 +1098,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -1115,13 +1115,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1132,13 +1132,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Drawing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1149,13 +1149,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1166,13 +1166,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1183,13 +1183,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Formats.Tar.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1200,13 +1200,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1217,13 +1217,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1234,13 +1234,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1251,13 +1251,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1268,13 +1268,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1285,13 +1285,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1302,13 +1302,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1319,13 +1319,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1336,13 +1336,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1353,13 +1353,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1370,13 +1370,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1387,13 +1387,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1404,13 +1404,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1421,13 +1421,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1438,13 +1438,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1455,13 +1455,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1472,13 +1472,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Pipes.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1489,13 +1489,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1506,13 +1506,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1523,13 +1523,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1540,13 +1540,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1557,13 +1557,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1574,13 +1574,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1591,13 +1591,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Memory.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1608,13 +1608,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1625,13 +1625,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Http.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1642,13 +1642,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1659,13 +1659,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Mail.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1676,13 +1676,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1693,13 +1693,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1710,13 +1710,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Ping.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1727,13 +1727,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1744,13 +1744,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Quic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1761,13 +1761,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Requests.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1778,13 +1778,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1795,13 +1795,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1812,13 +1812,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Sockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1829,13 +1829,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebClient.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1846,13 +1846,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1863,13 +1863,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1880,13 +1880,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1897,13 +1897,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1914,13 +1914,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1931,13 +1931,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1948,13 +1948,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1965,13 +1965,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ObjectModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Build", @@ -1985,10 +1985,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1999,13 +1999,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -2016,13 +2016,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Uri.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -2033,13 +2033,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -2050,13 +2050,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -2067,13 +2067,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -2084,13 +2084,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -2101,13 +2101,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -2118,13 +2118,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2135,13 +2135,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2152,13 +2152,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2169,13 +2169,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2186,13 +2186,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2203,13 +2203,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2220,13 +2220,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.Reader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2237,13 +2237,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2254,13 +2254,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.Writer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2271,13 +2271,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2288,13 +2288,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2305,13 +2305,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2322,13 +2322,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2339,13 +2339,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2356,13 +2356,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2373,13 +2373,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2390,13 +2390,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2407,13 +2407,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2424,13 +2424,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2441,13 +2441,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2458,13 +2458,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2475,13 +2475,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2492,13 +2492,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2509,13 +2509,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2526,13 +2526,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2543,13 +2543,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2560,13 +2560,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Claims.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2577,13 +2577,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2594,13 +2594,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2611,13 +2611,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2628,13 +2628,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2645,13 +2645,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2662,13 +2662,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2679,13 +2679,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2696,13 +2696,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2713,13 +2713,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2730,13 +2730,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Principal.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2747,13 +2747,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.SecureString.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2764,13 +2764,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2781,13 +2781,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2798,13 +2798,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ServiceProcess.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2815,13 +2815,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2832,13 +2832,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2849,13 +2849,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2866,13 +2866,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2883,13 +2883,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2900,13 +2900,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2917,13 +2917,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Channels.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2934,13 +2934,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2951,13 +2951,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2968,13 +2968,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2985,13 +2985,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -3002,13 +3002,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -3019,13 +3019,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Thread.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -3036,13 +3036,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -3053,13 +3053,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Timer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -3070,13 +3070,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -3087,13 +3087,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Transactions.Local.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -3104,13 +3104,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Transactions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -3121,13 +3121,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ValueTuple.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3138,13 +3138,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3155,13 +3155,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3172,13 +3172,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3189,13 +3189,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3206,13 +3206,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3223,13 +3223,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3240,13 +3240,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3257,13 +3257,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3274,13 +3274,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XPath.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3291,13 +3291,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3308,13 +3308,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3325,13 +3325,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3342,13 +3342,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3359,13 +3359,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\WindowsBase.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -3379,10 +3379,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3393,13 +3393,13 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Build", @@ -3413,10 +3413,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", @@ -3430,10 +3430,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.dll", "AssetKind": "Build", @@ -3444,13 +3444,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.dll" + "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.pdb", "AssetKind": "Build", @@ -3461,83 +3461,83 @@ "AssetTraitValue": "symbol", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.pdb" + "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.pdb" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "cs", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "cs", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\cs\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\cs\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "de", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "de", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\de\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\de\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -3549,10 +3549,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Build", @@ -3566,10 +3566,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Build", @@ -3583,95 +3583,95 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", "AssetTraitName": "Culture", "AssetTraitValue": "es-ES", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "es", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "es", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\es\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\es\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "fr", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "fr", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\fr\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\fr\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Build", @@ -3685,10 +3685,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Build", @@ -3702,10 +3702,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Build", @@ -3719,10 +3719,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Build", @@ -3736,129 +3736,129 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "it", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "it", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\it\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\it\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ja", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ja", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ja\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ja\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/blazorwasm.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ja", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\ja\\blazorwasm.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\ja\\blazorwasm.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ko", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ko", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ko\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ko\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3869,13 +3869,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\mscorlib.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3886,4212 +3886,4212 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\netstandard.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pl", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pl", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\pl\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\pl\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pt-BR", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "pt-BR", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\pt-BR\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\pt-BR\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ru", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "ru", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ru\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ru\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "tr", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "tr", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\tr\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\tr\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "zh-Hans", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "zh-Hans", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Culture", "AssetTraitValue": "zh-Hant", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Related", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Culture", "AssetTraitValue": "zh-Hant", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CodeAnalysis.CSharp.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CodeAnalysis.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CodeAnalysis.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Tar.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/classlibrarywithsatelliteassemblies.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/classlibrarywithsatelliteassemblies.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/classlibrarywithsatelliteassemblies.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/cs/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/cs/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/de/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/de/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/es/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/es/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/fr/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/fr/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/it/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/it/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ja/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ja/blazorwasm.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\blazorwasm.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ja/blazorwasm.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\blazorwasm.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ko/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ko/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pl/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pl/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ru/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/ru/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/tr/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/tr/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -8105,10 +8105,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Build", @@ -8122,10 +8122,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", "BasePath": "/", "RelativePath": "serviceworkers/my-service-worker.js", "AssetKind": "Publish", @@ -8139,10 +8139,10 @@ "OriginalItemSpec": "wwwroot\\serviceworkers\\my-prod-service-worker.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js", "SourceId": "blazorwasm", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", "BasePath": "/", "RelativePath": "serviceworkers/my-service-worker.js", "AssetKind": "Build", @@ -8156,10 +8156,10 @@ "OriginalItemSpec": "wwwroot\\serviceworkers\\my-service-worker.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", "SourceId": "blazorwasm", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "Fake-License.txt", "AssetKind": "All", @@ -8173,10 +8173,10 @@ "OriginalItemSpec": "wwwroot\\Fake-License.txt" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", "SourceId": "blazorwasm", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "Build", @@ -8190,10 +8190,10 @@ "OriginalItemSpec": "wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", "SourceId": "blazorwasm", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", @@ -8207,10 +8207,10 @@ "OriginalItemSpec": "wwwroot\\index.html" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "styles.css", "AssetKind": "All", @@ -8224,10 +8224,10 @@ "OriginalItemSpec": "wwwroot\\styles.css" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "wwwroot/exampleJsInterop.js", "AssetKind": "All", 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 d213ff982080..01cbf2224a1f 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 @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj", + "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj", "Version": 2, "Source": "blazorwasm", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj", + "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj", "Version": 2, "Source": "RazorClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "RazorClassLibrary\\wwwroot", "Source": "RazorClassLibrary", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "Pattern": "**" }, { "Name": "blazorwasm\\wwwroot", "Source": "blazorwasm", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json", + "Identity": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json", "SourceId": "blazorhosted", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\", + "ContentRoot": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\", "BasePath": "_content/blazorhosted", "RelativePath": "blazorhosted.modules.json", "AssetKind": "Build", @@ -64,10 +64,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -78,13 +78,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -95,13 +95,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -112,13 +112,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -129,13 +129,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -146,13 +146,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -163,13 +163,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -180,13 +180,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -197,13 +197,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -214,13 +214,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -231,13 +231,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -248,13 +248,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -265,13 +265,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -282,13 +282,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -299,13 +299,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -316,13 +316,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -333,13 +333,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -350,13 +350,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -367,13 +367,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -384,13 +384,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -401,13 +401,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -418,13 +418,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -435,13 +435,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -452,13 +452,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -469,13 +469,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -486,13 +486,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -503,13 +503,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -520,13 +520,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Build", @@ -537,13 +537,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb", "AssetKind": "Build", @@ -554,13 +554,13 @@ "AssetTraitValue": "symbol", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -571,13 +571,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.AppContext.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -588,13 +588,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Buffers.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -605,13 +605,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -622,13 +622,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -639,13 +639,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -656,13 +656,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -673,13 +673,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -690,13 +690,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -707,13 +707,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -724,13 +724,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -741,13 +741,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -758,13 +758,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -775,13 +775,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -792,13 +792,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -809,13 +809,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Console.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -826,13 +826,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -843,13 +843,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.Common.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -860,13 +860,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -877,13 +877,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -894,13 +894,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -911,13 +911,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -928,13 +928,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -945,13 +945,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -962,13 +962,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -979,13 +979,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -996,13 +996,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -1013,13 +1013,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -1030,13 +1030,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -1047,13 +1047,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -1064,13 +1064,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1081,13 +1081,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Drawing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1098,13 +1098,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1115,13 +1115,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1132,13 +1132,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Formats.Tar.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1149,13 +1149,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1166,13 +1166,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1183,13 +1183,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1200,13 +1200,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1217,13 +1217,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1234,13 +1234,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1251,13 +1251,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1268,13 +1268,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1285,13 +1285,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1302,13 +1302,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1319,13 +1319,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1336,13 +1336,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1353,13 +1353,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1370,13 +1370,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1387,13 +1387,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1404,13 +1404,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1421,13 +1421,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Pipes.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1438,13 +1438,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1455,13 +1455,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1472,13 +1472,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1489,13 +1489,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1506,13 +1506,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1523,13 +1523,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1540,13 +1540,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Memory.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1557,13 +1557,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1574,13 +1574,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Http.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1591,13 +1591,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1608,13 +1608,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Mail.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1625,13 +1625,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1642,13 +1642,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1659,13 +1659,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Ping.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1676,13 +1676,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1693,13 +1693,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Quic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1710,13 +1710,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Requests.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1727,13 +1727,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1744,13 +1744,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1761,13 +1761,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Sockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1778,13 +1778,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebClient.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1795,13 +1795,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1812,13 +1812,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1829,13 +1829,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1846,13 +1846,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1863,13 +1863,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1880,13 +1880,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1897,13 +1897,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1914,13 +1914,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ObjectModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Build", @@ -1934,10 +1934,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1948,13 +1948,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1965,13 +1965,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Uri.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1982,13 +1982,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -1999,13 +1999,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -2016,13 +2016,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -2033,13 +2033,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -2050,13 +2050,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -2067,13 +2067,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2084,13 +2084,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2101,13 +2101,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2118,13 +2118,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2135,13 +2135,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2152,13 +2152,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2169,13 +2169,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.Reader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2186,13 +2186,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2203,13 +2203,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.Writer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2220,13 +2220,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2237,13 +2237,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2254,13 +2254,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2271,13 +2271,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2288,13 +2288,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2305,13 +2305,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2322,13 +2322,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2339,13 +2339,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2356,13 +2356,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2373,13 +2373,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2390,13 +2390,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2407,13 +2407,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2424,13 +2424,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2441,13 +2441,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2458,13 +2458,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2475,13 +2475,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2492,13 +2492,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2509,13 +2509,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Claims.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2526,13 +2526,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2543,13 +2543,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2560,13 +2560,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2577,13 +2577,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2594,13 +2594,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2611,13 +2611,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2628,13 +2628,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2645,13 +2645,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2662,13 +2662,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2679,13 +2679,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Principal.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2696,13 +2696,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.SecureString.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2713,13 +2713,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2730,13 +2730,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2747,13 +2747,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ServiceProcess.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2764,13 +2764,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2781,13 +2781,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2798,13 +2798,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2815,13 +2815,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2832,13 +2832,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2849,13 +2849,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2866,13 +2866,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Channels.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2883,13 +2883,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2900,13 +2900,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2917,13 +2917,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2934,13 +2934,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2951,13 +2951,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2968,13 +2968,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Thread.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2985,13 +2985,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -3002,13 +3002,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Timer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -3019,13 +3019,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -3036,13 +3036,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Transactions.Local.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -3053,13 +3053,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Transactions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -3070,13 +3070,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ValueTuple.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3087,13 +3087,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3104,13 +3104,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3121,13 +3121,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3138,13 +3138,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3155,13 +3155,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3172,13 +3172,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3189,13 +3189,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3206,13 +3206,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3223,13 +3223,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XPath.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3240,13 +3240,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3257,13 +3257,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3274,13 +3274,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3291,13 +3291,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3308,13 +3308,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\WindowsBase.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -3328,10 +3328,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3342,13 +3342,13 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Build", @@ -3362,10 +3362,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", @@ -3379,12 +3379,12 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -3396,10 +3396,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Build", @@ -3413,10 +3413,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Build", @@ -3430,10 +3430,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Build", @@ -3447,10 +3447,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Build", @@ -3464,10 +3464,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Build", @@ -3481,10 +3481,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Build", @@ -3498,10 +3498,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3512,13 +3512,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\mscorlib.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3529,3464 +3529,3464 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\netstandard.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Tar.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Build", @@ -7000,10 +7000,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", "BasePath": "/", "RelativePath": "serviceworkers/my-service-worker.js", "AssetKind": "Build", @@ -7017,10 +7017,10 @@ "OriginalItemSpec": "wwwroot\\serviceworkers\\my-service-worker.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "Fake-License.txt", "AssetKind": "All", @@ -7034,10 +7034,10 @@ "OriginalItemSpec": "wwwroot\\Fake-License.txt" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "blazorwasm.lib.module.js", "AssetKind": "All", @@ -7051,10 +7051,10 @@ "OriginalItemSpec": "wwwroot\\blazorwasm.lib.module.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "Build", @@ -7068,10 +7068,10 @@ "OriginalItemSpec": "wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", @@ -7085,10 +7085,10 @@ "OriginalItemSpec": "wwwroot\\index.html" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\razorclasslibrary.lib.module.js", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\razorclasslibrary.lib.module.js", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "razorclasslibrary.lib.module.js", "AssetKind": "All", @@ -7102,10 +7102,10 @@ "OriginalItemSpec": "wwwroot\\razorclasslibrary.lib.module.js" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "styles.css", "AssetKind": "All", @@ -7119,10 +7119,10 @@ "OriginalItemSpec": "wwwroot\\styles.css" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "wwwroot/exampleJsInterop.js", "AssetKind": "All", 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 7018d92f734a..2d084bb0d6cb 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 @@ -1,232 +1,232 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_bin\\publish.extension.txt", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_bin\\publish.extension.txt.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_bin\\publish.extension.txt.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorwasm-minimal.lib.module.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\app.css", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.br", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\index.html", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", @@ -234,155 +234,155 @@ "${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.${RuntimeVersion}.[[hash]].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.${RuntimeVersion}.[[hash]].js.br]]", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", - "${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}\\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.timezones.blat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", + "${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}\\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", @@ -447,5 +447,231 @@ "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt" + "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.br", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\index.html" ] \ No newline at end of file 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 79088e64237f..7212e09243ed 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 @@ -10,17 +10,17 @@ { "Name": "blazorwasm-minimal\\wwwroot", "Source": "blazorwasm-minimal", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -31,15 +31,15 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Primary", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -65,13 +65,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -82,13 +82,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -99,13 +99,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -116,13 +116,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -133,13 +133,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -150,13 +150,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -170,2543 +170,2543 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_bin/publish.extension.txt.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\publish.extension.txt", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\publish.extension.txt" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_bin/publish.extension.txt.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\publish.extension.txt", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\publish.extension.txt" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br", + "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2720,10 +2720,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2737,10 +2737,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2754,10 +2754,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2771,10 +2771,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2788,10 +2788,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2805,10 +2805,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2822,10 +2822,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2839,10 +2839,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2856,10 +2856,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2873,10 +2873,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2890,10 +2890,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2907,10 +2907,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2924,10 +2924,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2941,10 +2941,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2958,10 +2958,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2975,10 +2975,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2992,10 +2992,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3009,10 +3009,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3026,10 +3026,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3043,10 +3043,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3060,10 +3060,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3077,10 +3077,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3094,10 +3094,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3111,10 +3111,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3128,10 +3128,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3145,10 +3145,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3162,10 +3162,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3179,10 +3179,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3196,10 +3196,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3213,10 +3213,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3230,10 +3230,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3247,10 +3247,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3264,10 +3264,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3281,10 +3281,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3298,10 +3298,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3315,10 +3315,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3332,10 +3332,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3349,10 +3349,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3366,10 +3366,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3383,10 +3383,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3400,10 +3400,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3417,10 +3417,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3434,10 +3434,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3451,10 +3451,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3468,10 +3468,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3485,10 +3485,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3502,10 +3502,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3519,10 +3519,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3536,10 +3536,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3553,10 +3553,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3570,10 +3570,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3587,10 +3587,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3604,10 +3604,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3621,10 +3621,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3638,10 +3638,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3655,10 +3655,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3672,10 +3672,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3689,10 +3689,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3706,10 +3706,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3723,10 +3723,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3740,10 +3740,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3757,10 +3757,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3774,10 +3774,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3791,10 +3791,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\publish.extension.txt", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt", "AssetKind": "Publish", @@ -3808,10 +3808,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\publish.extension.txt" }, { - "Identity": "${ProjectRoot}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "blazorwasm-minimal.lib.module.js", "AssetKind": "All", @@ -3825,10 +3825,10 @@ "OriginalItemSpec": "wwwroot\\blazorwasm-minimal.lib.module.js" }, { - "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\wwwroot\\css\\app.css", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "All", @@ -3842,10 +3842,10 @@ "OriginalItemSpec": "wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\wwwroot\\index.html", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", 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 b233bfc003f3..eacef659aec6 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 @@ -1,229 +1,229 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorwasm-minimal.lib.module.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\app.css", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\index.html", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", @@ -231,153 +231,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.${RuntimeVersion}.[[hash]].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.${RuntimeVersion}.[[hash]].js.br]]", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", - "${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}\\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.timezones.blat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", + "${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}\\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", @@ -441,5 +441,228 @@ "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\index.html" ] \ No newline at end of file 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 d5ea4244332c..ed78c31b7361 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 @@ -10,17 +10,17 @@ { "Name": "blazorwasm-minimal\\wwwroot", "Source": "blazorwasm-minimal", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -31,15 +31,15 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Primary", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -65,13 +65,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -82,13 +82,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -99,13 +99,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -116,13 +116,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -133,13 +133,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -150,13 +150,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -170,2509 +170,2509 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br", + "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2686,10 +2686,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2703,10 +2703,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2720,10 +2720,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2737,10 +2737,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2754,10 +2754,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2771,10 +2771,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2788,10 +2788,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2805,10 +2805,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2822,10 +2822,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2839,10 +2839,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2856,10 +2856,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2873,10 +2873,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2890,10 +2890,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2907,10 +2907,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2924,10 +2924,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2941,10 +2941,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2958,10 +2958,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -2975,10 +2975,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -2992,10 +2992,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3009,10 +3009,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3026,10 +3026,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3043,10 +3043,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3060,10 +3060,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3077,10 +3077,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3094,10 +3094,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3111,10 +3111,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3128,10 +3128,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3145,10 +3145,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3162,10 +3162,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3179,10 +3179,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3196,10 +3196,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3213,10 +3213,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3230,10 +3230,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3247,10 +3247,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3264,10 +3264,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3281,10 +3281,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3298,10 +3298,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3315,10 +3315,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3332,10 +3332,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3349,10 +3349,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3366,10 +3366,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3383,10 +3383,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3400,10 +3400,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3417,10 +3417,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3434,10 +3434,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3451,10 +3451,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3468,10 +3468,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3485,10 +3485,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3502,10 +3502,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3519,10 +3519,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3536,10 +3536,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3553,10 +3553,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3570,10 +3570,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3587,10 +3587,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3604,10 +3604,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3621,10 +3621,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3638,10 +3638,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3655,10 +3655,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3672,10 +3672,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3689,10 +3689,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3706,10 +3706,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3723,10 +3723,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3740,10 +3740,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3757,10 +3757,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "blazorwasm-minimal.lib.module.js", "AssetKind": "Publish", @@ -3774,10 +3774,10 @@ "OriginalItemSpec": "wwwroot\\blazorwasm-minimal.lib.module.js" }, { - "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\wwwroot\\css\\app.css", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "All", @@ -3791,10 +3791,10 @@ "OriginalItemSpec": "wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\wwwroot\\index.html", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json index ddaed723da46..ea470e4ae656 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json @@ -1,239 +1,475 @@ [ - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\Fake-License.txt", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_bin\\publish.extension.txt", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_bin\\publish.extension.txt.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_bin\\publish.extension.txt.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\styles.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.pdb.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorhosted.modules.json", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorwasm.lib.module.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\app.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\custom-service-worker-assets.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\index.html", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\serviceworkers\\my-service-worker.js", - "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json" + "${OutputPath}\\wwwroot\\Fake-License.txt", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.br", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.gz", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.br", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorhosted.modules.json", + "${OutputPath}\\wwwroot\\blazorwasm.lib.module.js", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js", + "${OutputPath}\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js", + "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", + "${OutputPath}\\wwwroot\\Fake-License.txt", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.br", + "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.gz", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.br", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorhosted.modules.json", + "${OutputPath}\\wwwroot\\blazorwasm.lib.module.js", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js", + "${OutputPath}\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js" ] \ 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 0c8a317978e6..3bdd8d4823a6 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 @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj", + "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj", "Version": 2, "Source": "blazorwasm", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj", + "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj", "Version": 2, "Source": "RazorClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "RazorClassLibrary\\wwwroot", "Source": "RazorClassLibrary", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "Pattern": "**" }, { "Name": "blazorwasm\\wwwroot", "Source": "blazorwasm", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", + "Identity": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", "SourceId": "blazorhosted", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\", + "ContentRoot": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\", "BasePath": "_content/blazorhosted", "RelativePath": "blazorhosted.modules.json", "AssetKind": "Publish", @@ -64,10 +64,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\LinkToWebRoot\\css\\app.css", + "Identity": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "Publish", @@ -81,10 +81,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -95,15 +95,15 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Primary", @@ -112,13 +112,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -129,13 +129,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -146,13 +146,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -163,13 +163,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -180,13 +180,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -197,13 +197,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -214,13 +214,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -234,2594 +234,2594 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_bin/publish.extension.txt.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_bin/publish.extension.txt.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br", + "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -2835,10 +2835,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2852,10 +2852,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2869,10 +2869,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2886,10 +2886,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2903,10 +2903,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2920,10 +2920,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2937,10 +2937,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2954,10 +2954,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2971,10 +2971,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2988,10 +2988,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -3005,10 +3005,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -3022,10 +3022,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -3039,10 +3039,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -3056,10 +3056,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -3073,10 +3073,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -3090,10 +3090,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -3107,10 +3107,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -3124,10 +3124,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3141,10 +3141,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3158,10 +3158,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3175,10 +3175,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3192,10 +3192,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3209,10 +3209,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Publish", @@ -3226,10 +3226,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3243,10 +3243,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3260,10 +3260,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3277,10 +3277,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3294,10 +3294,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3311,10 +3311,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3328,10 +3328,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3345,10 +3345,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3362,10 +3362,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3379,10 +3379,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3396,10 +3396,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3413,10 +3413,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3430,10 +3430,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3447,10 +3447,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3464,10 +3464,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3481,10 +3481,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3498,10 +3498,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3515,10 +3515,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3532,10 +3532,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3549,10 +3549,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3566,10 +3566,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3583,10 +3583,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3600,10 +3600,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3617,10 +3617,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3634,10 +3634,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3651,10 +3651,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3668,10 +3668,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3685,10 +3685,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3702,10 +3702,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3719,10 +3719,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3736,10 +3736,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3753,10 +3753,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3770,10 +3770,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3787,10 +3787,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3804,10 +3804,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3821,10 +3821,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3838,10 +3838,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3855,10 +3855,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3872,10 +3872,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3889,10 +3889,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3906,10 +3906,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Publish", @@ -3923,10 +3923,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3940,10 +3940,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_bin/publish.extension.txt", "AssetKind": "Publish", @@ -3957,10 +3957,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\publish.extension.txt" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", "BasePath": "/", "RelativePath": "serviceworkers/my-service-worker.js", "AssetKind": "Publish", @@ -3974,10 +3974,10 @@ "OriginalItemSpec": "wwwroot\\serviceworkers\\my-prod-service-worker.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "Fake-License.txt", "AssetKind": "All", @@ -3991,10 +3991,10 @@ "OriginalItemSpec": "wwwroot\\Fake-License.txt" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "blazorwasm.lib.module.js", "AssetKind": "All", @@ -4008,10 +4008,10 @@ "OriginalItemSpec": "wwwroot\\blazorwasm.lib.module.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", @@ -4025,10 +4025,10 @@ "OriginalItemSpec": "wwwroot\\index.html" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "styles.css", "AssetKind": "All", @@ -4042,10 +4042,10 @@ "OriginalItemSpec": "wwwroot\\styles.css" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "wwwroot/exampleJsInterop.js", "AssetKind": "All", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.files.json index 5cd05af188ff..880b88263875 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.files.json @@ -92,9 +92,125 @@ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", - "${OutputPath}\\wwwroot\\_framework\\dotnet.6.0.9.[[hash]].js", - "${OutputPath}\\wwwroot\\_framework\\dotnet.6.0.9.[[hash]].js.br", - "${OutputPath}\\wwwroot\\_framework\\dotnet.6.0.9.[[hash]].js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\BlazorWasmHosted60.Client.styles.css", + "${OutputPath}\\wwwroot\\_framework\\BlazorWasmHosted60.Client.dll", + "${OutputPath}\\wwwroot\\_framework\\BlazorWasmHosted60.Client.dll.br", + "${OutputPath}\\wwwroot\\_framework\\BlazorWasmHosted60.Client.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\BlazorWasmHosted60.Client.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\BlazorWasmHosted60.Shared.dll", + "${OutputPath}\\wwwroot\\_framework\\BlazorWasmHosted60.Shared.dll.br", + "${OutputPath}\\wwwroot\\_framework\\BlazorWasmHosted60.Shared.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\BlazorWasmHosted60.Shared.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", 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 f73f86ac25f2..1d560597e52e 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 @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\Client\\BlazorWasmHosted60.Client.csproj", + "Identity": "${ProjectPath}\\Client\\BlazorWasmHosted60.Client.csproj", "Version": 2, "Source": "BlazorWasmHosted60.Client", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", @@ -22,17 +22,17 @@ { "Name": "BlazorWasmHosted60.Client\\wwwroot", "Source": "BlazorWasmHosted60.Client", - "ContentRoot": "${ProjectRoot}\\Client\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -43,15 +43,15 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net6.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.6.0.9.[[hash]].js", + "Identity": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.6.0.9.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Primary", @@ -60,13 +60,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.6.0.9.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -77,13 +77,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -94,13 +94,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -111,13 +111,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -128,13 +128,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -145,13 +145,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -162,13 +162,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\blazor.publish.boot.json", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -179,1305 +179,1305 @@ "AssetTraitValue": "manifest", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\blazor.publish.boot.json" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\build-gz\\[[_framework/BlazorWasmHosted60.Client.pdb.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\BlazorWasmHosted60.Client.pdb.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/BlazorWasmHosted60.Client.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\BlazorWasmHosted60.Client.pdb", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\BlazorWasmHosted60.Client.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\build-gz\\[[_framework/BlazorWasmHosted60.Client.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\BlazorWasmHosted60.Client.pdb.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\build-gz\\[[_framework/BlazorWasmHosted60.Shared.pdb.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\BlazorWasmHosted60.Shared.pdb.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/BlazorWasmHosted60.Shared.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\BlazorWasmHosted60.Shared.pdb", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\BlazorWasmHosted60.Shared.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\build-gz\\[[_framework/BlazorWasmHosted60.Shared.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\BlazorWasmHosted60.Shared.pdb.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\build-gz\\[[_framework/dotnet.6.0.9.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.6.0.9.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.6.0.9.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\build-gz\\[[_framework/dotnet.6.0.9.[[hash]].js.gz]]" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\build-gz\\[[_framework/dotnet.wasm.gz]]" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/BlazorWasmHosted60.Client.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\BlazorWasmHosted60.Client.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/BlazorWasmHosted60.Client.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Client.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\BlazorWasmHosted60.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Client.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\BlazorWasmHosted60.Client.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/BlazorWasmHosted60.Client.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\BlazorWasmHosted60.Client.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/BlazorWasmHosted60.Client.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Client.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\BlazorWasmHosted60.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Client.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\BlazorWasmHosted60.Client.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/BlazorWasmHosted60.Shared.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\BlazorWasmHosted60.Shared.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/BlazorWasmHosted60.Shared.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Shared.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\BlazorWasmHosted60.Shared.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Shared.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\BlazorWasmHosted60.Shared.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/BlazorWasmHosted60.Shared.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\BlazorWasmHosted60.Shared.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/BlazorWasmHosted60.Shared.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Shared.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\BlazorWasmHosted60.Shared.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Shared.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\BlazorWasmHosted60.Shared.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Collections.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.ComponentModel.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Linq.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Memory.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Private.CoreLib.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Private.Uri.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Runtime.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Text.Json.dll.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/blazor.boot.json.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/blazor.boot.json.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/blazor.webassembly.js.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/dotnet.6.0.9.[[hash]].js.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.6.0.9.[[hash]].js.br", + "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.6.0.9.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.6.0.9.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/dotnet.timezones.blat.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/dotnet.wasm.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/icudt.dat.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/icudt_CJK.dat.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/icudt_EFIGS.dat.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/icudt_no_CJK.dat.br]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\compress\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Client.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\BlazorWasmHosted60.Client.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/BlazorWasmHosted60.Client.dll", "AssetKind": "Publish", @@ -1488,13 +1488,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Client.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\BlazorWasmHosted60.Client.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Shared.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\BlazorWasmHosted60.Shared.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/BlazorWasmHosted60.Shared.dll", "AssetKind": "Publish", @@ -1505,13 +1505,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\BlazorWasmHosted60.Shared.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\BlazorWasmHosted60.Shared.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -1522,13 +1522,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -1539,13 +1539,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -1556,13 +1556,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -1573,13 +1573,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -1590,13 +1590,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -1607,13 +1607,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -1624,13 +1624,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -1641,13 +1641,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -1658,13 +1658,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -1675,13 +1675,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -1692,13 +1692,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -1709,13 +1709,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -1726,13 +1726,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -1743,13 +1743,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -1760,13 +1760,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Collections.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -1777,13 +1777,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Collections.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -1794,13 +1794,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Linq.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -1811,13 +1811,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Linq.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Memory.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -1828,13 +1828,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Memory.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -1845,13 +1845,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -1862,13 +1862,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -1879,13 +1879,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -1896,13 +1896,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Runtime.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -1913,13 +1913,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Runtime.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -1930,13 +1930,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\linked\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\bin\\Debug\\net6.0\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -1947,13 +1947,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\net6.0\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorWasmHosted60.Client.styles.css", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\BlazorWasmHosted60.Client.styles.css", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "/", "RelativePath": "BlazorWasmHosted60.Client.styles.css", "AssetKind": "All", @@ -1964,13 +1964,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\Client\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorWasmHosted60.Client.styles.css" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\BlazorWasmHosted60.Client.styles.css" }, { - "Identity": "${ProjectRoot}\\Client\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\Client\\wwwroot\\css\\app.css", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "All", @@ -1984,10 +1984,10 @@ "OriginalItemSpec": "wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\Client\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\Client\\wwwroot\\index.html", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\Client\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\Client\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", 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 b233bfc003f3..eacef659aec6 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 @@ -1,229 +1,229 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorwasm-minimal.lib.module.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\app.css", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\index.html", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", @@ -231,153 +231,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.${RuntimeVersion}.[[hash]].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.${RuntimeVersion}.[[hash]].js.br]]", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", - "${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}\\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.timezones.blat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", + "${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}\\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", @@ -441,5 +441,228 @@ "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\index.html" ] \ No newline at end of file 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 04939de63ca6..09d54d0eb618 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 @@ -10,17 +10,17 @@ { "Name": "blazorwasm-minimal\\wwwroot", "Source": "blazorwasm-minimal", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -31,15 +31,15 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Primary", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -65,13 +65,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -82,13 +82,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -99,13 +99,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -116,13 +116,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -133,13 +133,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -150,13 +150,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -170,2509 +170,2509 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br", + "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2686,10 +2686,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2703,10 +2703,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2720,10 +2720,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2737,10 +2737,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2754,10 +2754,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2771,10 +2771,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2788,10 +2788,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2805,10 +2805,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2822,10 +2822,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2839,10 +2839,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2856,10 +2856,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2873,10 +2873,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2890,10 +2890,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2907,10 +2907,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2924,10 +2924,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2941,10 +2941,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2958,10 +2958,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -2975,10 +2975,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -2992,10 +2992,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3009,10 +3009,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3026,10 +3026,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3043,10 +3043,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3060,10 +3060,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3077,10 +3077,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3094,10 +3094,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3111,10 +3111,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3128,10 +3128,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3145,10 +3145,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3162,10 +3162,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3179,10 +3179,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3196,10 +3196,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3213,10 +3213,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3230,10 +3230,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3247,10 +3247,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3264,10 +3264,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3281,10 +3281,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3298,10 +3298,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3315,10 +3315,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3332,10 +3332,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3349,10 +3349,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3366,10 +3366,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3383,10 +3383,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3400,10 +3400,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3417,10 +3417,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3434,10 +3434,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3451,10 +3451,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3468,10 +3468,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3485,10 +3485,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3502,10 +3502,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3519,10 +3519,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3536,10 +3536,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3553,10 +3553,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3570,10 +3570,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3587,10 +3587,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3604,10 +3604,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3621,10 +3621,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3638,10 +3638,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3655,10 +3655,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3672,10 +3672,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3689,10 +3689,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3706,10 +3706,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3723,10 +3723,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3740,10 +3740,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3757,10 +3757,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "blazorwasm-minimal.lib.module.js", "AssetKind": "All", @@ -3774,10 +3774,10 @@ "OriginalItemSpec": "wwwroot\\blazorwasm-minimal.lib.module.js" }, { - "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\wwwroot\\css\\app.css", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "All", @@ -3791,10 +3791,10 @@ "OriginalItemSpec": "wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\wwwroot\\index.html", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json index 69049f1906a9..76c5067092f4 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json @@ -1,148 +1,150 @@ [ - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\Fake-License.txt", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\Fake-License.txt.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\Fake-License.txt.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\styles.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\styles.css.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\styles.css.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Immutable.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Immutable.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Immutable.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorwasm.styles.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorwasm.styles.css.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorwasm.styles.css.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\app.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\app.css.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\app.css.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\custom-service-worker-assets.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\custom-service-worker-assets.js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\custom-service-worker-assets.js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\index.html", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\index.html.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\index.html.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\serviceworkers\\my-service-worker.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\serviceworkers\\my-service-worker.js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\serviceworkers\\my-service-worker.js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\styles.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\wwwroot\\exampleJsInterop.js" + "${OutputPath}\\wwwroot\\Fake-License.txt", + "${OutputPath}\\wwwroot\\Fake-License.txt.br", + "${OutputPath}\\wwwroot\\Fake-License.txt.gz", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css.br", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css.gz", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.br", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.br", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Immutable.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Immutable.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm.styles.css", + "${OutputPath}\\wwwroot\\blazorwasm.styles.css.br", + "${OutputPath}\\wwwroot\\blazorwasm.styles.css.gz", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\css\\app.css.br", + "${OutputPath}\\wwwroot\\css\\app.css.gz", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js.br", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js.gz", + "${OutputPath}\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\index.html.br", + "${OutputPath}\\wwwroot\\index.html.gz", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js.br", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js.gz", + "${OutputPath}\\wwwroot\\styles.css", + "${OutputPath}\\wwwroot\\wwwroot\\exampleJsInterop.js", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json index 85f90f6127f9..360d3bab12b5 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj", + "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj", "Version": 1, "Source": "blazorwasm", "GetPublishAssetsTargets": "", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj", + "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj", "Version": 1, "Source": "RazorClassLibrary", "GetPublishAssetsTargets": "", @@ -33,24 +33,24 @@ { "Name": "RazorClassLibrary\\wwwroot", "Source": "RazorClassLibrary", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "Pattern": "**" }, { "Name": "blazorwasm\\wwwroot", "Source": "blazorwasm", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "styles.css", "AssetKind": "All", @@ -61,13 +61,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "wwwroot/exampleJsInterop.js", "AssetKind": "All", @@ -78,7 +78,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js" } ] } \ 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 786642d88de3..ed04725a8861 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 @@ -1,608 +1,812 @@ [ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll.gz", - "${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.${RuntimeVersion}.[[hash]].js.gz]]", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.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}\\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.timezones.blat.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}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css" + "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.CSharp.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.AppContext.dll", + "${OutputPath}\\wwwroot\\_framework\\System.AppContext.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Immutable.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Core.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Core.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Data.Common.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Data.Common.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Data.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Data.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Process.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Asn1.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Tar.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Calendars.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Parallel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Queryable.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.HttpListener.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Mail.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Mail.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NameResolution.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Ping.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Ping.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Quic.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Quic.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Requests.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Requests.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Security.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Security.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.ServicePoint.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Sockets.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebClient.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebProxy.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.Vectors.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Reader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Writer.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Handles.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Numerics.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.AccessControl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.SecureString.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceModel.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceProcess.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Channels.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Overlapped.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Thread.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Timer.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.Local.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ValueTuple.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ValueTuple.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Web.HttpUtility.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Windows.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Windows.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Serialization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XDocument.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll", + "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\mscorlib.dll", + "${OutputPath}\\wwwroot\\_framework\\mscorlib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz" ] \ No newline at end of file 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 bda00477025c..5cc6c5efea22 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 @@ -10,17 +10,17 @@ { "Name": "blazorwasm-minimal\\wwwroot", "Source": "blazorwasm-minimal", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -31,13 +31,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -48,13 +48,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -65,13 +65,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -82,13 +82,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -99,13 +99,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -116,13 +116,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -133,13 +133,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -150,13 +150,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -167,13 +167,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -184,13 +184,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -201,13 +201,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -218,13 +218,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -235,13 +235,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -252,13 +252,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -269,13 +269,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -286,13 +286,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -303,13 +303,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -320,13 +320,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -337,13 +337,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -354,13 +354,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -371,13 +371,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -388,13 +388,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -405,13 +405,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -422,13 +422,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -439,13 +439,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -456,13 +456,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -473,13 +473,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -490,13 +490,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.AppContext.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -507,13 +507,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Buffers.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -524,13 +524,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -541,13 +541,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -558,13 +558,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -575,13 +575,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -592,13 +592,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -609,13 +609,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -626,13 +626,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -643,13 +643,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -660,13 +660,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -677,13 +677,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -694,13 +694,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -711,13 +711,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -728,13 +728,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Console.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -745,13 +745,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -762,13 +762,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.Common.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -779,13 +779,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -796,13 +796,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -813,13 +813,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -830,13 +830,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -847,13 +847,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -864,13 +864,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -881,13 +881,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -898,13 +898,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -915,13 +915,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -932,13 +932,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -949,13 +949,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -966,13 +966,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -983,13 +983,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1000,13 +1000,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Drawing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1017,13 +1017,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1034,13 +1034,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1051,13 +1051,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Formats.Tar.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1068,13 +1068,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1085,13 +1085,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1102,13 +1102,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1119,13 +1119,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1136,13 +1136,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1153,13 +1153,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1170,13 +1170,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1187,13 +1187,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1204,13 +1204,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1221,13 +1221,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1238,13 +1238,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1255,13 +1255,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1272,13 +1272,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1289,13 +1289,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1306,13 +1306,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1323,13 +1323,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1340,13 +1340,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Pipes.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1357,13 +1357,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1374,13 +1374,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1391,13 +1391,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1408,13 +1408,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1425,13 +1425,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1442,13 +1442,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1459,13 +1459,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Memory.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1476,13 +1476,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1493,13 +1493,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Http.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1510,13 +1510,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1527,13 +1527,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Mail.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1544,13 +1544,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1561,13 +1561,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1578,13 +1578,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Ping.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1595,13 +1595,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1612,13 +1612,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Quic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1629,13 +1629,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Requests.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1646,13 +1646,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1663,13 +1663,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1680,13 +1680,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Sockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1697,13 +1697,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebClient.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1714,13 +1714,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1731,13 +1731,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1748,13 +1748,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1765,13 +1765,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1782,13 +1782,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1799,13 +1799,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1816,13 +1816,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1833,13 +1833,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ObjectModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Build", @@ -1853,10 +1853,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1867,13 +1867,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1884,13 +1884,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Uri.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1901,13 +1901,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -1918,13 +1918,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -1935,13 +1935,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -1952,13 +1952,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -1969,13 +1969,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -1986,13 +1986,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2003,13 +2003,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2020,13 +2020,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2037,13 +2037,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2054,13 +2054,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2071,13 +2071,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2088,13 +2088,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.Reader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2105,13 +2105,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2122,13 +2122,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.Writer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2139,13 +2139,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2156,13 +2156,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2173,13 +2173,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2190,13 +2190,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2207,13 +2207,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2224,13 +2224,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2241,13 +2241,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2258,13 +2258,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2275,13 +2275,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2292,13 +2292,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2309,13 +2309,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2326,13 +2326,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2343,13 +2343,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2360,13 +2360,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2377,13 +2377,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2394,13 +2394,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2411,13 +2411,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2428,13 +2428,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Claims.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2445,13 +2445,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2462,13 +2462,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2479,13 +2479,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2496,13 +2496,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2513,13 +2513,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2530,13 +2530,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2547,13 +2547,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2564,13 +2564,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2581,13 +2581,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2598,13 +2598,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Principal.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2615,13 +2615,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.SecureString.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2632,13 +2632,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2649,13 +2649,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2666,13 +2666,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ServiceProcess.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2683,13 +2683,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2700,13 +2700,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2717,13 +2717,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2734,13 +2734,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2751,13 +2751,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2768,13 +2768,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2785,13 +2785,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Channels.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2802,13 +2802,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2819,13 +2819,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2836,13 +2836,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2853,13 +2853,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2870,13 +2870,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2887,13 +2887,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Thread.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2904,13 +2904,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -2921,13 +2921,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Timer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -2938,13 +2938,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -2955,13 +2955,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Transactions.Local.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -2972,13 +2972,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Transactions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -2989,13 +2989,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ValueTuple.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3006,13 +3006,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3023,13 +3023,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3040,13 +3040,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3057,13 +3057,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3074,13 +3074,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3091,13 +3091,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3108,13 +3108,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3125,13 +3125,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3142,13 +3142,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XPath.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3159,13 +3159,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3176,13 +3176,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3193,13 +3193,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3210,13 +3210,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3227,13 +3227,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\WindowsBase.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -3247,10 +3247,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3261,13 +3261,13 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Build", @@ -3281,10 +3281,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb", "AssetKind": "Build", @@ -3298,12 +3298,12 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -3315,10 +3315,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Build", @@ -3332,10 +3332,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Build", @@ -3349,10 +3349,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Build", @@ -3366,10 +3366,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Build", @@ -3383,10 +3383,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Build", @@ -3400,10 +3400,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Build", @@ -3417,10 +3417,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3431,13 +3431,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\mscorlib.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3448,3430 +3448,3430 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\netstandard.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Tar.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "/", "RelativePath": "blazorwasm-minimal.styles.css", "AssetKind": "All", @@ -6882,13 +6882,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "/", "RelativePath": "blazorwasm-minimal.bundle.scp.css", "AssetKind": "All", @@ -6899,13 +6899,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\wwwroot\\appsettings.development.json", + "Identity": "${ProjectPath}\\wwwroot\\appsettings.development.json", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "appsettings.development.json", "AssetKind": "All", @@ -6919,10 +6919,10 @@ "OriginalItemSpec": "wwwroot\\appsettings.development.json" }, { - "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\wwwroot\\css\\app.css", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "All", @@ -6936,10 +6936,10 @@ "OriginalItemSpec": "wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\wwwroot\\index.html", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", 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 7a2b3f74e383..39221c49205b 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 @@ -1,412 +1,411 @@ [ - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\custom-service-worker-assets.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\wwwroot\\serviceworkers\\my-service-worker.js", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\serviceworkers\\my-service-worker.js" + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.CSharp.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\System.AppContext.dll", + "${OutputPath}\\wwwroot\\_framework\\System.AppContext.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Immutable.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Core.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Core.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Data.Common.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Data.Common.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Data.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Data.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Process.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Drawing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Asn1.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Formats.Tar.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Calendars.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Globalization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipes.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Parallel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Queryable.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.HttpListener.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Mail.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Mail.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NameResolution.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Ping.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Ping.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Quic.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Quic.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Requests.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Requests.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Security.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Security.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.ServicePoint.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Sockets.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebClient.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebProxy.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.WebSockets.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.Vectors.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Numerics.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Xml.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Reader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.Writer.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Handles.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Numerics.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Serialization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.AccessControl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Principal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.SecureString.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceModel.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ServiceProcess.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encoding.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Channels.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Overlapped.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Thread.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Timer.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.Local.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Transactions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ValueTuple.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ValueTuple.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Web.HttpUtility.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Windows.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Windows.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.Serialization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XDocument.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XPath.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Xml.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll", + "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\mscorlib.dll", + "${OutputPath}\\wwwroot\\_framework\\mscorlib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js" ] \ No newline at end of file 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 f4dc5e3042ee..1cfb920ae1ab 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 @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj", + "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj", "Version": 2, "Source": "blazorwasm", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj", + "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj", "Version": 2, "Source": "RazorClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "RazorClassLibrary\\wwwroot", "Source": "RazorClassLibrary", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "Pattern": "**" }, { "Name": "blazorwasm\\wwwroot", "Source": "blazorwasm", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -61,13 +61,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -78,13 +78,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -95,13 +95,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -112,13 +112,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -129,13 +129,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -146,13 +146,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -163,13 +163,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -180,13 +180,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -197,13 +197,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -214,13 +214,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -231,13 +231,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -248,13 +248,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -265,13 +265,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -282,13 +282,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -299,13 +299,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -316,13 +316,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -333,13 +333,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -350,13 +350,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -367,13 +367,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -384,13 +384,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -401,13 +401,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -418,13 +418,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -435,13 +435,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -452,13 +452,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -469,13 +469,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -486,13 +486,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -503,13 +503,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Build", @@ -520,13 +520,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb", "AssetKind": "Build", @@ -537,13 +537,13 @@ "AssetTraitValue": "symbol", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -554,13 +554,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.AppContext.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -571,13 +571,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Buffers.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -588,13 +588,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -605,13 +605,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -622,13 +622,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -639,13 +639,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -656,13 +656,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Collections.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -673,13 +673,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -690,13 +690,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -707,13 +707,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -724,13 +724,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -741,13 +741,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -758,13 +758,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ComponentModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -775,13 +775,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -792,13 +792,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Console.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -809,13 +809,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -826,13 +826,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.Common.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -843,13 +843,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -860,13 +860,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Data.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -877,13 +877,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -894,13 +894,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -911,13 +911,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -928,13 +928,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -945,13 +945,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -962,13 +962,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -979,13 +979,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -996,13 +996,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -1013,13 +1013,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -1030,13 +1030,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -1047,13 +1047,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -1064,13 +1064,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Drawing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -1081,13 +1081,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -1098,13 +1098,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll", "AssetKind": "Build", @@ -1115,13 +1115,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Formats.Tar.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Tar.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -1132,13 +1132,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -1149,13 +1149,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -1166,13 +1166,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Globalization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -1183,13 +1183,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -1200,13 +1200,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -1217,13 +1217,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -1234,13 +1234,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Compression.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -1251,13 +1251,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -1268,13 +1268,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -1285,13 +1285,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -1302,13 +1302,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -1319,13 +1319,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -1336,13 +1336,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -1353,13 +1353,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -1370,13 +1370,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -1387,13 +1387,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -1404,13 +1404,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.Pipes.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -1421,13 +1421,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -1438,13 +1438,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.IO.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -1455,13 +1455,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -1472,13 +1472,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -1489,13 +1489,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -1506,13 +1506,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -1523,13 +1523,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Memory.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -1540,13 +1540,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -1557,13 +1557,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Http.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -1574,13 +1574,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -1591,13 +1591,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Mail.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -1608,13 +1608,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -1625,13 +1625,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -1642,13 +1642,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Ping.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -1659,13 +1659,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll", "AssetKind": "Build", @@ -1676,13 +1676,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Quic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -1693,13 +1693,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Requests.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -1710,13 +1710,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -1727,13 +1727,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -1744,13 +1744,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.Sockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -1761,13 +1761,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebClient.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -1778,13 +1778,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -1795,13 +1795,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -1812,13 +1812,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -1829,13 +1829,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -1846,13 +1846,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Net.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -1863,13 +1863,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -1880,13 +1880,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -1897,13 +1897,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ObjectModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Build", @@ -1917,10 +1917,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -1931,13 +1931,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -1948,13 +1948,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Uri.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -1965,13 +1965,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -1982,13 +1982,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Private.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -1999,13 +1999,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -2016,13 +2016,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -2033,13 +2033,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -2050,13 +2050,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -2067,13 +2067,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -2084,13 +2084,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -2101,13 +2101,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -2118,13 +2118,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -2135,13 +2135,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Reflection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -2152,13 +2152,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.Reader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -2169,13 +2169,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -2186,13 +2186,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Resources.Writer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -2203,13 +2203,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -2220,13 +2220,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -2237,13 +2237,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -2254,13 +2254,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -2271,13 +2271,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -2288,13 +2288,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -2305,13 +2305,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -2322,13 +2322,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -2339,13 +2339,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -2356,13 +2356,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -2373,13 +2373,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -2390,13 +2390,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -2407,13 +2407,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -2424,13 +2424,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -2441,13 +2441,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -2458,13 +2458,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -2475,13 +2475,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -2492,13 +2492,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Claims.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -2509,13 +2509,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -2526,13 +2526,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -2543,13 +2543,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -2560,13 +2560,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -2577,13 +2577,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -2594,13 +2594,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -2611,13 +2611,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Build", @@ -2628,13 +2628,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -2645,13 +2645,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -2662,13 +2662,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.Principal.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -2679,13 +2679,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.SecureString.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -2696,13 +2696,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -2713,13 +2713,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -2730,13 +2730,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ServiceProcess.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -2747,13 +2747,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -2764,13 +2764,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -2781,13 +2781,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -2798,13 +2798,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -2815,13 +2815,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -2832,13 +2832,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -2849,13 +2849,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Channels.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -2866,13 +2866,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -2883,13 +2883,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -2900,13 +2900,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -2917,13 +2917,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -2934,13 +2934,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -2951,13 +2951,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Thread.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -2968,13 +2968,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -2985,13 +2985,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.Timer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -3002,13 +3002,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Threading.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -3019,13 +3019,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Transactions.Local.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -3036,13 +3036,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Transactions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -3053,13 +3053,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.ValueTuple.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -3070,13 +3070,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -3087,13 +3087,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -3104,13 +3104,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -3121,13 +3121,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -3138,13 +3138,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -3155,13 +3155,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -3172,13 +3172,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -3189,13 +3189,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -3206,13 +3206,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XPath.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -3223,13 +3223,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -3240,13 +3240,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -3257,13 +3257,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -3274,13 +3274,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\System.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -3291,13 +3291,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\WindowsBase.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -3311,10 +3311,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -3325,13 +3325,13 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Build", @@ -3345,10 +3345,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", @@ -3362,12 +3362,12 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -3379,10 +3379,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Build", @@ -3396,10 +3396,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Build", @@ -3413,10 +3413,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Build", @@ -3430,10 +3430,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Build", @@ -3447,10 +3447,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Build", @@ -3464,10 +3464,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Build", @@ -3481,10 +3481,10 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -3495,13 +3495,13 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\mscorlib.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -3512,3464 +3512,3464 @@ "AssetTraitValue": "runtime", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${Tfm}\\netstandard.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Tar.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Tar.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Quic.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Build", @@ -6983,10 +6983,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", "BasePath": "/", "RelativePath": "serviceworkers/my-service-worker.js", "AssetKind": "Build", @@ -7000,10 +7000,10 @@ "OriginalItemSpec": "wwwroot\\serviceworkers\\my-service-worker.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "Fake-License.txt", "AssetKind": "All", @@ -7017,10 +7017,10 @@ "OriginalItemSpec": "wwwroot\\Fake-License.txt" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "Build", @@ -7034,10 +7034,10 @@ "OriginalItemSpec": "wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", @@ -7051,10 +7051,10 @@ "OriginalItemSpec": "wwwroot\\index.html" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "styles.css", "AssetKind": "All", @@ -7068,10 +7068,10 @@ "OriginalItemSpec": "wwwroot\\styles.css" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "wwwroot/exampleJsInterop.js", "AssetKind": "All", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json index 0d7d22ea733c..1445997c8fec 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj", + "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj", "Version": 1, "Source": "blazorwasm", "GetPublishAssetsTargets": "", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj", + "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj", "Version": 1, "Source": "RazorClassLibrary", "GetPublishAssetsTargets": "", @@ -33,24 +33,24 @@ { "Name": "RazorClassLibrary\\wwwroot", "Source": "RazorClassLibrary", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "Pattern": "**" }, { "Name": "blazorwasm\\wwwroot", "Source": "blazorwasm", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\blazor.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Build", @@ -61,13 +61,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj\\Debug\\net5\\blazor.boot.json" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Build", @@ -78,13 +78,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj\\Debug\\net5\\blazorwasm.dll" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", @@ -95,13 +95,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj\\Debug\\net5\\blazorwasm.pdb" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Build", @@ -112,13 +112,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Build", @@ -129,13 +129,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Build", @@ -146,13 +146,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Build", @@ -163,13 +163,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Build", @@ -180,13 +180,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Build", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll.gz", "AssetKind": "Build", @@ -214,13 +214,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Build", @@ -231,13 +231,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Build", @@ -248,13 +248,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Build", @@ -265,13 +265,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Build", @@ -282,13 +282,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Build", @@ -299,13 +299,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Build", @@ -316,13 +316,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Build", @@ -333,13 +333,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Build", @@ -350,13 +350,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Build", @@ -367,13 +367,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Build", @@ -384,13 +384,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Build", @@ -401,13 +401,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Build", @@ -418,13 +418,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Build", @@ -435,13 +435,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Build", @@ -452,13 +452,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Build", @@ -469,13 +469,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Build", @@ -486,13 +486,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", "AssetKind": "Build", @@ -503,13 +503,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", "AssetKind": "Build", @@ -520,13 +520,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", "AssetKind": "Build", @@ -537,13 +537,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", "AssetKind": "Build", @@ -554,13 +554,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/RazorClassLibrary.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Build", @@ -571,13 +571,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\netstandard2.1\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.AppContext.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll.gz", "AssetKind": "Build", @@ -588,13 +588,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.AppContext.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Build", @@ -605,13 +605,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Buffers.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Build", @@ -622,13 +622,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll.gz", "AssetKind": "Build", @@ -639,13 +639,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Build", @@ -656,13 +656,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Build", @@ -673,13 +673,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Build", @@ -690,13 +690,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Build", @@ -707,13 +707,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", "AssetKind": "Build", @@ -724,13 +724,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", "AssetKind": "Build", @@ -741,13 +741,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Build", @@ -758,13 +758,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Build", @@ -775,13 +775,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Build", @@ -792,13 +792,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll.gz", "AssetKind": "Build", @@ -809,13 +809,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Build", @@ -826,13 +826,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Console.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Core.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll.gz", "AssetKind": "Build", @@ -843,13 +843,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Data.Common.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll.gz", "AssetKind": "Build", @@ -860,13 +860,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.Common.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", "AssetKind": "Build", @@ -877,13 +877,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Data.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll.gz", "AssetKind": "Build", @@ -894,13 +894,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", "AssetKind": "Build", @@ -911,13 +911,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Build", @@ -928,13 +928,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Build", @@ -945,13 +945,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", "AssetKind": "Build", @@ -962,13 +962,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", "AssetKind": "Build", @@ -979,13 +979,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", "AssetKind": "Build", @@ -996,13 +996,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", "AssetKind": "Build", @@ -1013,13 +1013,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", "AssetKind": "Build", @@ -1030,13 +1030,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", "AssetKind": "Build", @@ -1047,13 +1047,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Build", @@ -1064,13 +1064,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", "AssetKind": "Build", @@ -1081,13 +1081,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Drawing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll.gz", "AssetKind": "Build", @@ -1098,13 +1098,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", "AssetKind": "Build", @@ -1115,13 +1115,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll.gz", "AssetKind": "Build", @@ -1132,13 +1132,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", "AssetKind": "Build", @@ -1149,13 +1149,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", "AssetKind": "Build", @@ -1166,13 +1166,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Globalization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll.gz", "AssetKind": "Build", @@ -1183,13 +1183,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", "AssetKind": "Build", @@ -1200,13 +1200,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", "AssetKind": "Build", @@ -1217,13 +1217,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", "AssetKind": "Build", @@ -1234,13 +1234,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll.gz", "AssetKind": "Build", @@ -1251,13 +1251,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", "AssetKind": "Build", @@ -1268,13 +1268,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", "AssetKind": "Build", @@ -1285,13 +1285,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", "AssetKind": "Build", @@ -1302,13 +1302,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Build", @@ -1319,13 +1319,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll.gz", "AssetKind": "Build", @@ -1336,13 +1336,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", "AssetKind": "Build", @@ -1353,13 +1353,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", "AssetKind": "Build", @@ -1370,13 +1370,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Build", @@ -1387,13 +1387,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", "AssetKind": "Build", @@ -1404,13 +1404,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll.gz", "AssetKind": "Build", @@ -1421,13 +1421,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", "AssetKind": "Build", @@ -1438,13 +1438,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll.gz", "AssetKind": "Build", @@ -1455,13 +1455,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Build", @@ -1472,13 +1472,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll.gz", "AssetKind": "Build", @@ -1489,13 +1489,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll.gz", "AssetKind": "Build", @@ -1506,13 +1506,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Build", @@ -1523,13 +1523,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Build", @@ -1540,13 +1540,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Memory.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll.gz", "AssetKind": "Build", @@ -1557,13 +1557,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Build", @@ -1574,13 +1574,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll.gz", "AssetKind": "Build", @@ -1591,13 +1591,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll.gz", "AssetKind": "Build", @@ -1608,13 +1608,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Mail.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll.gz", "AssetKind": "Build", @@ -1625,13 +1625,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", "AssetKind": "Build", @@ -1642,13 +1642,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll.gz", "AssetKind": "Build", @@ -1659,13 +1659,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Ping.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll.gz", "AssetKind": "Build", @@ -1676,13 +1676,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll.gz", "AssetKind": "Build", @@ -1693,13 +1693,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Requests.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Security.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll.gz", "AssetKind": "Build", @@ -1710,13 +1710,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", "AssetKind": "Build", @@ -1727,13 +1727,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll.gz", "AssetKind": "Build", @@ -1744,13 +1744,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Sockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll.gz", "AssetKind": "Build", @@ -1761,13 +1761,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebClient.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", "AssetKind": "Build", @@ -1778,13 +1778,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll.gz", "AssetKind": "Build", @@ -1795,13 +1795,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", "AssetKind": "Build", @@ -1812,13 +1812,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll.gz", "AssetKind": "Build", @@ -1829,13 +1829,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll.gz", "AssetKind": "Build", @@ -1846,13 +1846,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", "AssetKind": "Build", @@ -1863,13 +1863,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll.gz", "AssetKind": "Build", @@ -1880,13 +1880,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Build", @@ -1897,13 +1897,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ObjectModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Build", @@ -1914,13 +1914,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", "AssetKind": "Build", @@ -1931,13 +1931,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Private.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Build", @@ -1948,13 +1948,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Build", @@ -1965,13 +1965,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Uri.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", "AssetKind": "Build", @@ -1982,13 +1982,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll.gz", "AssetKind": "Build", @@ -1999,13 +1999,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", "AssetKind": "Build", @@ -2016,13 +2016,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Build", @@ -2033,13 +2033,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Build", @@ -2050,13 +2050,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll.gz", "AssetKind": "Build", @@ -2067,13 +2067,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", "AssetKind": "Build", @@ -2084,13 +2084,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", "AssetKind": "Build", @@ -2101,13 +2101,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Build", @@ -2118,13 +2118,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", "AssetKind": "Build", @@ -2135,13 +2135,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll.gz", "AssetKind": "Build", @@ -2152,13 +2152,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll.gz", "AssetKind": "Build", @@ -2169,13 +2169,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Reader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Build", @@ -2186,13 +2186,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll.gz", "AssetKind": "Build", @@ -2203,13 +2203,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Writer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Build", @@ -2220,13 +2220,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", "AssetKind": "Build", @@ -2237,13 +2237,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Build", @@ -2254,13 +2254,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll.gz", "AssetKind": "Build", @@ -2271,13 +2271,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Build", @@ -2288,13 +2288,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", "AssetKind": "Build", @@ -2305,13 +2305,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", "AssetKind": "Build", @@ -2322,13 +2322,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Build", @@ -2339,13 +2339,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", "AssetKind": "Build", @@ -2356,13 +2356,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", "AssetKind": "Build", @@ -2373,13 +2373,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", "AssetKind": "Build", @@ -2390,13 +2390,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", "AssetKind": "Build", @@ -2407,13 +2407,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", "AssetKind": "Build", @@ -2424,13 +2424,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", "AssetKind": "Build", @@ -2441,13 +2441,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Build", @@ -2458,13 +2458,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll.gz", "AssetKind": "Build", @@ -2475,13 +2475,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Build", @@ -2492,13 +2492,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Claims.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", "AssetKind": "Build", @@ -2509,13 +2509,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", "AssetKind": "Build", @@ -2526,13 +2526,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", "AssetKind": "Build", @@ -2543,13 +2543,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", "AssetKind": "Build", @@ -2560,13 +2560,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", "AssetKind": "Build", @@ -2577,13 +2577,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", "AssetKind": "Build", @@ -2594,13 +2594,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", "AssetKind": "Build", @@ -2611,13 +2611,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", "AssetKind": "Build", @@ -2628,13 +2628,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll.gz", "AssetKind": "Build", @@ -2645,13 +2645,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll.gz", "AssetKind": "Build", @@ -2662,13 +2662,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.SecureString.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll.gz", "AssetKind": "Build", @@ -2679,13 +2679,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", "AssetKind": "Build", @@ -2696,13 +2696,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll.gz", "AssetKind": "Build", @@ -2713,13 +2713,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceProcess.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", "AssetKind": "Build", @@ -2730,13 +2730,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", "AssetKind": "Build", @@ -2747,13 +2747,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll.gz", "AssetKind": "Build", @@ -2764,13 +2764,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Build", @@ -2781,13 +2781,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Build", @@ -2798,13 +2798,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", "AssetKind": "Build", @@ -2815,13 +2815,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll.gz", "AssetKind": "Build", @@ -2832,13 +2832,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Channels.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", "AssetKind": "Build", @@ -2849,13 +2849,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", "AssetKind": "Build", @@ -2866,13 +2866,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", "AssetKind": "Build", @@ -2883,13 +2883,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", "AssetKind": "Build", @@ -2900,13 +2900,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Build", @@ -2917,13 +2917,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll.gz", "AssetKind": "Build", @@ -2934,13 +2934,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Thread.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Build", @@ -2951,13 +2951,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll.gz", "AssetKind": "Build", @@ -2968,13 +2968,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Timer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Build", @@ -2985,13 +2985,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll.gz", "AssetKind": "Build", @@ -3002,13 +3002,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.Local.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Transactions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll.gz", "AssetKind": "Build", @@ -3019,13 +3019,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll.gz", "AssetKind": "Build", @@ -3036,13 +3036,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ValueTuple.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", "AssetKind": "Build", @@ -3053,13 +3053,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll.gz", "AssetKind": "Build", @@ -3070,13 +3070,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Windows.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll.gz", "AssetKind": "Build", @@ -3087,13 +3087,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll.gz", "AssetKind": "Build", @@ -3104,13 +3104,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", "AssetKind": "Build", @@ -3121,13 +3121,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll.gz", "AssetKind": "Build", @@ -3138,13 +3138,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll.gz", "AssetKind": "Build", @@ -3155,13 +3155,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", "AssetKind": "Build", @@ -3172,13 +3172,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll.gz", "AssetKind": "Build", @@ -3189,13 +3189,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", "AssetKind": "Build", @@ -3206,13 +3206,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", "AssetKind": "Build", @@ -3223,13 +3223,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll.gz", "AssetKind": "Build", @@ -3240,13 +3240,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Build", @@ -3257,13 +3257,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/WindowsBase.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll.gz", "AssetKind": "Build", @@ -3274,15 +3274,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\WindowsBase.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -3291,13 +3291,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj\\Debug\\net5\\dotnet.${RuntimeVersion}.js" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Build", @@ -3308,13 +3308,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Build", @@ -3325,13 +3325,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.wasm" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Build", @@ -3342,13 +3342,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt.dat" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", @@ -3359,13 +3359,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_CJK.dat" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", @@ -3376,13 +3376,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", @@ -3393,13 +3393,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/mscorlib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll.gz", "AssetKind": "Build", @@ -3410,13 +3410,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\mscorlib.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Build", @@ -3427,13 +3427,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\netstandard.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\custom-service-worker-assets.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Build", @@ -3444,15 +3444,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\custom-service-worker-assets.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\dotnet.${RuntimeVersion}.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -3461,13 +3461,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj\\Debug\\net5\\dotnet.${RuntimeVersion}.js" + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\serviceworkers\\wwwroot\\serviceworkers\\my-service-worker.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\serviceworkers\\wwwroot\\serviceworkers\\my-service-worker.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "serviceworkers/my-service-worker.js", "AssetKind": "Build", @@ -3478,13 +3478,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\serviceworkers\\wwwroot\\serviceworkers\\my-service-worker.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\serviceworkers\\wwwroot\\serviceworkers\\my-service-worker.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "Fake-License.txt", "AssetKind": "Build", @@ -3495,13 +3495,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "Build", @@ -3512,13 +3512,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\wwwroot\\css\\app.css" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "Build", @@ -3529,13 +3529,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\netstandard2.1\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Build", @@ -3546,13 +3546,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\netstandard2.1\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\netstandard2.1\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb", "AssetKind": "Build", @@ -3563,13 +3563,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\netstandard2.1\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "styles.css", "AssetKind": "All", @@ -3580,13 +3580,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "wwwroot/exampleJsInterop.js", "AssetKind": "All", @@ -3597,13 +3597,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js" + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js" }, { - "Identity": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Build", @@ -3614,13 +3614,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Build", @@ -3631,13 +3631,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Build", @@ -3648,13 +3648,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js", + "Identity": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "Build", @@ -3665,13 +3665,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Build", @@ -3682,13 +3682,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll", + "Identity": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Build", @@ -3699,13 +3699,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Build", @@ -3716,13 +3716,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Build", @@ -3733,13 +3733,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Build", @@ -3750,13 +3750,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Build", @@ -3767,13 +3767,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Build", @@ -3784,13 +3784,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll", + "Identity": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Build", @@ -3801,13 +3801,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Build", @@ -3818,13 +3818,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Build", @@ -3835,13 +3835,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Build", @@ -3852,13 +3852,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Build", @@ -3869,13 +3869,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Build", @@ -3886,13 +3886,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Build", @@ -3903,13 +3903,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll", + "Identity": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Build", @@ -3920,13 +3920,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll", + "Identity": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Build", @@ -3937,13 +3937,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll", + "Identity": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Build", @@ -3954,13 +3954,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Build", @@ -3971,13 +3971,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll", + "Identity": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Build", @@ -3988,13 +3988,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.CSharp.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.CSharp.dll", "AssetKind": "Build", @@ -4005,13 +4005,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.CSharp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.Core.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", "AssetKind": "Build", @@ -4022,13 +4022,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.VisualBasic.dll", "AssetKind": "Build", @@ -4039,13 +4039,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Primitives.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", "AssetKind": "Build", @@ -4056,13 +4056,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Registry.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Win32.Registry.dll", "AssetKind": "Build", @@ -4073,13 +4073,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Registry.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.AppContext.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.AppContext.dll", "AssetKind": "Build", @@ -4090,13 +4090,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.AppContext.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Buffers.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Build", @@ -4107,13 +4107,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Buffers.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Concurrent.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Build", @@ -4124,13 +4124,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Immutable.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Immutable.dll", "AssetKind": "Build", @@ -4141,13 +4141,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Immutable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.NonGeneric.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Build", @@ -4158,13 +4158,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Specialized.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Build", @@ -4175,13 +4175,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Build", @@ -4192,13 +4192,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Annotations.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Build", @@ -4209,13 +4209,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.DataAnnotations.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", "AssetKind": "Build", @@ -4226,13 +4226,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.DataAnnotations.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.EventBasedAsync.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", "AssetKind": "Build", @@ -4243,13 +4243,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.EventBasedAsync.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Primitives.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Build", @@ -4260,13 +4260,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.TypeConverter.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Build", @@ -4277,13 +4277,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Build", @@ -4294,13 +4294,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Configuration.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Configuration.dll", "AssetKind": "Build", @@ -4311,13 +4311,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Configuration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Console.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Build", @@ -4328,13 +4328,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Console.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Core.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Core.dll", "AssetKind": "Build", @@ -4345,13 +4345,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Core.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.Common.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.Common.dll", "AssetKind": "Build", @@ -4362,13 +4362,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.Common.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.DataSetExtensions.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.DataSetExtensions.dll", "AssetKind": "Build", @@ -4379,13 +4379,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.DataSetExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Data.dll", "AssetKind": "Build", @@ -4396,13 +4396,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Contracts.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Contracts.dll", "AssetKind": "Build", @@ -4413,13 +4413,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Contracts.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Debug.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Build", @@ -4430,13 +4430,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Build", @@ -4447,13 +4447,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.FileVersionInfo.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", "AssetKind": "Build", @@ -4464,13 +4464,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.FileVersionInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Process.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Process.dll", "AssetKind": "Build", @@ -4481,13 +4481,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Process.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.StackTrace.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", "AssetKind": "Build", @@ -4498,13 +4498,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.StackTrace.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TextWriterTraceListener.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", "AssetKind": "Build", @@ -4515,13 +4515,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TextWriterTraceListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tools.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tools.dll", "AssetKind": "Build", @@ -4532,13 +4532,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tools.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TraceSource.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", "AssetKind": "Build", @@ -4549,13 +4549,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TraceSource.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tracing.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Build", @@ -4566,13 +4566,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.Primitives.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.Primitives.dll", "AssetKind": "Build", @@ -4583,13 +4583,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Drawing.dll", "AssetKind": "Build", @@ -4600,13 +4600,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Dynamic.Runtime.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Dynamic.Runtime.dll", "AssetKind": "Build", @@ -4617,13 +4617,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Dynamic.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Formats.Asn1.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Formats.Asn1.dll", "AssetKind": "Build", @@ -4634,13 +4634,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Formats.Asn1.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Calendars.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Calendars.dll", "AssetKind": "Build", @@ -4651,13 +4651,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Calendars.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Extensions.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.Extensions.dll", "AssetKind": "Build", @@ -4668,13 +4668,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Globalization.dll", "AssetKind": "Build", @@ -4685,13 +4685,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.Brotli.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.Brotli.dll", "AssetKind": "Build", @@ -4702,13 +4702,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.Brotli.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.FileSystem.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", "AssetKind": "Build", @@ -4719,13 +4719,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.ZipFile.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", "AssetKind": "Build", @@ -4736,13 +4736,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.ZipFile.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Compression.dll", "AssetKind": "Build", @@ -4753,13 +4753,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.AccessControl.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", "AssetKind": "Build", @@ -4770,13 +4770,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.DriveInfo.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", "AssetKind": "Build", @@ -4787,13 +4787,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.DriveInfo.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Primitives.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", "AssetKind": "Build", @@ -4804,13 +4804,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Watcher.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Build", @@ -4821,13 +4821,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.dll", "AssetKind": "Build", @@ -4838,13 +4838,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.IsolatedStorage.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.IsolatedStorage.dll", "AssetKind": "Build", @@ -4855,13 +4855,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.IsolatedStorage.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.MemoryMappedFiles.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", "AssetKind": "Build", @@ -4872,13 +4872,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.MemoryMappedFiles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.AccessControl.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", "AssetKind": "Build", @@ -4889,13 +4889,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipes.dll", "AssetKind": "Build", @@ -4906,13 +4906,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.UnmanagedMemoryStream.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", "AssetKind": "Build", @@ -4923,13 +4923,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.UnmanagedMemoryStream.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.dll", "AssetKind": "Build", @@ -4940,13 +4940,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Expressions.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Build", @@ -4957,13 +4957,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Parallel.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Parallel.dll", "AssetKind": "Build", @@ -4974,13 +4974,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Queryable.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Queryable.dll", "AssetKind": "Build", @@ -4991,13 +4991,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Queryable.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Build", @@ -5008,13 +5008,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Memory.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Build", @@ -5025,13 +5025,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Memory.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.Json.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.Json.dll", "AssetKind": "Build", @@ -5042,13 +5042,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Build", @@ -5059,13 +5059,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.HttpListener.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.HttpListener.dll", "AssetKind": "Build", @@ -5076,13 +5076,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.HttpListener.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Mail.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Mail.dll", "AssetKind": "Build", @@ -5093,13 +5093,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Mail.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NameResolution.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NameResolution.dll", "AssetKind": "Build", @@ -5110,13 +5110,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NameResolution.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NetworkInformation.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.NetworkInformation.dll", "AssetKind": "Build", @@ -5127,13 +5127,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NetworkInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Ping.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Ping.dll", "AssetKind": "Build", @@ -5144,13 +5144,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Ping.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Primitives.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Primitives.dll", "AssetKind": "Build", @@ -5161,13 +5161,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Requests.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Requests.dll", "AssetKind": "Build", @@ -5178,13 +5178,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Requests.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Security.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Security.dll", "AssetKind": "Build", @@ -5195,13 +5195,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.ServicePoint.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.ServicePoint.dll", "AssetKind": "Build", @@ -5212,13 +5212,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.ServicePoint.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Sockets.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Sockets.dll", "AssetKind": "Build", @@ -5229,13 +5229,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Sockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebClient.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebClient.dll", "AssetKind": "Build", @@ -5246,13 +5246,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebClient.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebHeaderCollection.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", "AssetKind": "Build", @@ -5263,13 +5263,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebHeaderCollection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebProxy.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebProxy.dll", "AssetKind": "Build", @@ -5280,13 +5280,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.Client.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.Client.dll", "AssetKind": "Build", @@ -5297,13 +5297,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.Client.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.WebSockets.dll", "AssetKind": "Build", @@ -5314,13 +5314,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.dll", "AssetKind": "Build", @@ -5331,13 +5331,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.Vectors.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.Vectors.dll", "AssetKind": "Build", @@ -5348,13 +5348,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.Vectors.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Numerics.dll", "AssetKind": "Build", @@ -5365,13 +5365,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ObjectModel.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Build", @@ -5382,13 +5382,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ObjectModel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.DataContractSerialization.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.DataContractSerialization.dll", "AssetKind": "Build", @@ -5399,13 +5399,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.DataContractSerialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Runtime.InteropServices.JavaScript.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Build", @@ -5416,13 +5416,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Uri.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Build", @@ -5433,13 +5433,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Uri.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.Linq.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.Linq.dll", "AssetKind": "Build", @@ -5450,13 +5450,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Xml.dll", "AssetKind": "Build", @@ -5467,13 +5467,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.DispatchProxy.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", "AssetKind": "Build", @@ -5484,13 +5484,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.DispatchProxy.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Build", @@ -5501,13 +5501,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Build", @@ -5518,13 +5518,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.dll", "AssetKind": "Build", @@ -5535,13 +5535,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Extensions.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Extensions.dll", "AssetKind": "Build", @@ -5552,13 +5552,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Metadata.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Metadata.dll", "AssetKind": "Build", @@ -5569,13 +5569,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Metadata.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Primitives.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Build", @@ -5586,13 +5586,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.TypeExtensions.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", "AssetKind": "Build", @@ -5603,13 +5603,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.TypeExtensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.dll", "AssetKind": "Build", @@ -5620,13 +5620,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Reader.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Reader.dll", "AssetKind": "Build", @@ -5637,13 +5637,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Reader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.ResourceManager.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Build", @@ -5654,13 +5654,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Writer.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.Writer.dll", "AssetKind": "Build", @@ -5671,13 +5671,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Writer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Build", @@ -5688,13 +5688,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.VisualC.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", "AssetKind": "Build", @@ -5705,13 +5705,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.VisualC.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Extensions.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Build", @@ -5722,13 +5722,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Handles.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Handles.dll", "AssetKind": "Build", @@ -5739,13 +5739,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Handles.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Build", @@ -5756,13 +5756,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.dll", "AssetKind": "Build", @@ -5773,13 +5773,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Intrinsics.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Intrinsics.dll", "AssetKind": "Build", @@ -5790,13 +5790,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Intrinsics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Loader.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Build", @@ -5807,13 +5807,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Numerics.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Numerics.dll", "AssetKind": "Build", @@ -5824,13 +5824,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Numerics.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Formatters.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", "AssetKind": "Build", @@ -5841,13 +5841,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Formatters.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Json.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", "AssetKind": "Build", @@ -5858,13 +5858,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Primitives.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", "AssetKind": "Build", @@ -5875,13 +5875,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Xml.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", "AssetKind": "Build", @@ -5892,13 +5892,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Serialization.dll", "AssetKind": "Build", @@ -5909,13 +5909,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Build", @@ -5926,13 +5926,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.AccessControl.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.AccessControl.dll", "AssetKind": "Build", @@ -5943,13 +5943,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.AccessControl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Claims.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Build", @@ -5960,13 +5960,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Claims.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Algorithms.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", "AssetKind": "Build", @@ -5977,13 +5977,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Algorithms.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Cng.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", "AssetKind": "Build", @@ -5994,13 +5994,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Cng.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Csp.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", "AssetKind": "Build", @@ -6011,13 +6011,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Csp.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Encoding.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", "AssetKind": "Build", @@ -6028,13 +6028,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.OpenSsl.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", "AssetKind": "Build", @@ -6045,13 +6045,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.OpenSsl.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Primitives.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", "AssetKind": "Build", @@ -6062,13 +6062,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Primitives.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.X509Certificates.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", "AssetKind": "Build", @@ -6079,13 +6079,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.X509Certificates.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.Windows.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.Windows.dll", "AssetKind": "Build", @@ -6096,13 +6096,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Principal.dll", "AssetKind": "Build", @@ -6113,13 +6113,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.SecureString.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.SecureString.dll", "AssetKind": "Build", @@ -6130,13 +6130,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.SecureString.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.dll", "AssetKind": "Build", @@ -6147,13 +6147,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceModel.Web.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceModel.Web.dll", "AssetKind": "Build", @@ -6164,13 +6164,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceModel.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceProcess.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ServiceProcess.dll", "AssetKind": "Build", @@ -6181,13 +6181,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceProcess.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.CodePages.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", "AssetKind": "Build", @@ -6198,13 +6198,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.CodePages.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.Extensions.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", "AssetKind": "Build", @@ -6215,13 +6215,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encoding.dll", "AssetKind": "Build", @@ -6232,13 +6232,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encodings.Web.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Build", @@ -6249,13 +6249,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Json.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Build", @@ -6266,13 +6266,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Json.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.RegularExpressions.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.dll", "AssetKind": "Build", @@ -6283,13 +6283,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.RegularExpressions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Channels.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Channels.dll", "AssetKind": "Build", @@ -6300,13 +6300,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Channels.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Overlapped.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Overlapped.dll", "AssetKind": "Build", @@ -6317,13 +6317,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Overlapped.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Dataflow.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", "AssetKind": "Build", @@ -6334,13 +6334,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Dataflow.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Extensions.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", "AssetKind": "Build", @@ -6351,13 +6351,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Extensions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Parallel.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", "AssetKind": "Build", @@ -6368,13 +6368,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Parallel.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Build", @@ -6385,13 +6385,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Thread.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Thread.dll", "AssetKind": "Build", @@ -6402,13 +6402,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Thread.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.ThreadPool.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Build", @@ -6419,13 +6419,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Timer.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Timer.dll", "AssetKind": "Build", @@ -6436,13 +6436,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Timer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Build", @@ -6453,13 +6453,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.Local.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.Local.dll", "AssetKind": "Build", @@ -6470,13 +6470,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.Local.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Transactions.dll", "AssetKind": "Build", @@ -6487,13 +6487,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ValueTuple.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ValueTuple.dll", "AssetKind": "Build", @@ -6504,13 +6504,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ValueTuple.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.HttpUtility.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.HttpUtility.dll", "AssetKind": "Build", @@ -6521,13 +6521,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.HttpUtility.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Web.dll", "AssetKind": "Build", @@ -6538,13 +6538,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Windows.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Windows.dll", "AssetKind": "Build", @@ -6555,13 +6555,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Windows.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Linq.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Linq.dll", "AssetKind": "Build", @@ -6572,13 +6572,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Linq.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.ReaderWriter.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.ReaderWriter.dll", "AssetKind": "Build", @@ -6589,13 +6589,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.ReaderWriter.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Serialization.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.Serialization.dll", "AssetKind": "Build", @@ -6606,13 +6606,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Serialization.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XDocument.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XDocument.dll", "AssetKind": "Build", @@ -6623,13 +6623,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.XDocument.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", "AssetKind": "Build", @@ -6640,13 +6640,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.XDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XPath.dll", "AssetKind": "Build", @@ -6657,13 +6657,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlDocument.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlDocument.dll", "AssetKind": "Build", @@ -6674,13 +6674,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlDocument.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlSerializer.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.XmlSerializer.dll", "AssetKind": "Build", @@ -6691,13 +6691,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlSerializer.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Xml.dll", "AssetKind": "Build", @@ -6708,13 +6708,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Build", @@ -6725,13 +6725,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\WindowsBase.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/WindowsBase.dll", "AssetKind": "Build", @@ -6742,13 +6742,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\WindowsBase.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\mscorlib.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/mscorlib.dll", "AssetKind": "Build", @@ -6759,13 +6759,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\mscorlib.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\netstandard.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Build", @@ -6776,13 +6776,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\netstandard.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Build", @@ -6793,13 +6793,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Build", @@ -6810,13 +6810,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.wasm", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Build", @@ -6827,13 +6827,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.wasm" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt.dat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Build", @@ -6844,13 +6844,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt.dat" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Build", @@ -6861,13 +6861,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_CJK.dat" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Build", @@ -6878,13 +6878,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat" }, { - "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Build", @@ -6895,13 +6895,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" }, { - "Identity": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll", + "Identity": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Build", @@ -6912,7 +6912,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll" } ] } \ 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 d432484c3064..3e5bb199f5c0 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 @@ -1,232 +1,232 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\appsettings.development.json", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\appsettings.development.json.br", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\appsettings.development.json.gz", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorwasm-minimal.styles.css", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\app.css", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${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", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", @@ -234,153 +234,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.${RuntimeVersion}.[[hash]].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.${RuntimeVersion}.[[hash]].js.br]]", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", - "${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}\\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.timezones.blat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", + "${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}\\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", @@ -446,5 +446,231 @@ "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css" + "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${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" ] \ No newline at end of file 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 df6cbbe619cb..901bbe953163 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 @@ -10,17 +10,17 @@ { "Name": "blazorwasm-minimal\\wwwroot", "Source": "blazorwasm-minimal", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -31,15 +31,15 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Primary", @@ -48,13 +48,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -65,13 +65,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -82,13 +82,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -99,13 +99,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -116,13 +116,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -133,13 +133,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -150,13 +150,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -170,2543 +170,2543 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br", + "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[appsettings.development.json.br]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\appsettings.development.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "appsettings.development.json.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\wwwroot\\appsettings.development.json", + "RelatedAsset": "${ProjectPath}\\wwwroot\\appsettings.development.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\wwwroot\\appsettings.development.json" + "OriginalItemSpec": "${ProjectPath}\\wwwroot\\appsettings.development.json.br" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[appsettings.development.json.gz]]", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\appsettings.development.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "appsettings.development.json.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\wwwroot\\appsettings.development.json", + "RelatedAsset": "${ProjectPath}\\wwwroot\\appsettings.development.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\wwwroot\\appsettings.development.json" + "OriginalItemSpec": "${ProjectPath}\\wwwroot\\appsettings.development.json.gz" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2720,10 +2720,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2737,10 +2737,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2754,10 +2754,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2771,10 +2771,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2788,10 +2788,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2805,10 +2805,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2822,10 +2822,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2839,10 +2839,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2856,10 +2856,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2873,10 +2873,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2890,10 +2890,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2907,10 +2907,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -2924,10 +2924,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -2941,10 +2941,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -2958,10 +2958,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -2975,10 +2975,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -2992,10 +2992,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3009,10 +3009,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3026,10 +3026,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3043,10 +3043,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3060,10 +3060,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3077,10 +3077,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3094,10 +3094,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3111,10 +3111,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3128,10 +3128,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3145,10 +3145,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3162,10 +3162,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3179,10 +3179,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3196,10 +3196,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3213,10 +3213,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3230,10 +3230,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3247,10 +3247,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3264,10 +3264,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3281,10 +3281,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3298,10 +3298,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3315,10 +3315,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3332,10 +3332,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3349,10 +3349,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3366,10 +3366,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3383,10 +3383,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3400,10 +3400,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3417,10 +3417,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3434,10 +3434,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3451,10 +3451,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3468,10 +3468,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3485,10 +3485,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3502,10 +3502,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3519,10 +3519,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3536,10 +3536,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3553,10 +3553,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3570,10 +3570,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3587,10 +3587,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3604,10 +3604,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3621,10 +3621,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3638,10 +3638,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3655,10 +3655,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3672,10 +3672,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3689,10 +3689,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3706,10 +3706,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3723,10 +3723,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3740,10 +3740,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3757,10 +3757,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.dll", "AssetKind": "Publish", @@ -3774,10 +3774,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3791,10 +3791,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "/", "RelativePath": "blazorwasm-minimal.styles.css", "AssetKind": "All", @@ -3805,13 +3805,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "/", "RelativePath": "blazorwasm-minimal.bundle.scp.css", "AssetKind": "All", @@ -3822,13 +3822,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\wwwroot\\appsettings.development.json", + "Identity": "${ProjectPath}\\wwwroot\\appsettings.development.json", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "appsettings.development.json", "AssetKind": "All", @@ -3842,10 +3842,10 @@ "OriginalItemSpec": "wwwroot\\appsettings.development.json" }, { - "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css", + "Identity": "${ProjectPath}\\wwwroot\\css\\app.css", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "All", @@ -3859,10 +3859,10 @@ "OriginalItemSpec": "wwwroot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\wwwroot\\index.html", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json index fb2712351cec..5b7afc1b7d94 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json @@ -1,234 +1,466 @@ [ - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\Fake-License.txt", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\styles.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.pdb.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorwasm.styles.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\app.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\custom-service-worker-assets.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\index.html", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\serviceworkers\\my-service-worker.js" + "${OutputPath}\\wwwroot\\Fake-License.txt", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.br", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm.styles.css", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js", + "${OutputPath}\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js", + "${OutputPath}\\wwwroot\\Fake-License.txt", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.br", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm.styles.css", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js", + "${OutputPath}\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js" ] \ 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 a15dcc0f7413..b8fac183f1df 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 @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj", + "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj", "Version": 2, "Source": "blazorwasm", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj", + "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj", "Version": 2, "Source": "RazorClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "RazorClassLibrary\\wwwroot", "Source": "RazorClassLibrary", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "Pattern": "**" }, { "Name": "blazorwasm\\wwwroot", "Source": "blazorwasm", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\LinkToWebRoot\\css\\app.css", + "Identity": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "Publish", @@ -64,10 +64,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -78,15 +78,15 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Primary", @@ -95,13 +95,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -112,13 +112,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -129,13 +129,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -146,13 +146,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -163,13 +163,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -180,13 +180,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -197,13 +197,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -217,2560 +217,2560 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br", + "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -2784,10 +2784,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2801,10 +2801,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2818,10 +2818,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2835,10 +2835,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2852,10 +2852,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2869,10 +2869,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2886,10 +2886,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2903,10 +2903,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2920,10 +2920,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2937,10 +2937,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2954,10 +2954,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2971,10 +2971,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2988,10 +2988,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -3005,10 +3005,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -3022,10 +3022,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -3039,10 +3039,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -3056,10 +3056,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -3073,10 +3073,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3090,10 +3090,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3107,10 +3107,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3124,10 +3124,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3141,10 +3141,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3158,10 +3158,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Publish", @@ -3175,10 +3175,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3192,10 +3192,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3209,10 +3209,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3226,10 +3226,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3243,10 +3243,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3260,10 +3260,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3277,10 +3277,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3294,10 +3294,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3311,10 +3311,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3328,10 +3328,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3345,10 +3345,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3362,10 +3362,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3379,10 +3379,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3396,10 +3396,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3413,10 +3413,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3430,10 +3430,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3447,10 +3447,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3464,10 +3464,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3481,10 +3481,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3498,10 +3498,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3515,10 +3515,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3532,10 +3532,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3549,10 +3549,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3566,10 +3566,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3583,10 +3583,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3600,10 +3600,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3617,10 +3617,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3634,10 +3634,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3651,10 +3651,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3668,10 +3668,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3685,10 +3685,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3702,10 +3702,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3719,10 +3719,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3736,10 +3736,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3753,10 +3753,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3770,10 +3770,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3787,10 +3787,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3804,10 +3804,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3821,10 +3821,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3838,10 +3838,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3855,10 +3855,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Publish", @@ -3872,10 +3872,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3889,10 +3889,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "/", "RelativePath": "blazorwasm.styles.css", "AssetKind": "All", @@ -3903,13 +3903,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", "BasePath": "/", "RelativePath": "serviceworkers/my-service-worker.js", "AssetKind": "Publish", @@ -3923,10 +3923,10 @@ "OriginalItemSpec": "wwwroot\\serviceworkers\\my-prod-service-worker.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "Fake-License.txt", "AssetKind": "All", @@ -3940,10 +3940,10 @@ "OriginalItemSpec": "wwwroot\\Fake-License.txt" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", @@ -3957,10 +3957,10 @@ "OriginalItemSpec": "wwwroot\\index.html" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "styles.css", "AssetKind": "All", @@ -3974,10 +3974,10 @@ "OriginalItemSpec": "wwwroot\\styles.css" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "wwwroot/exampleJsInterop.js", "AssetKind": "All", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json index fb2712351cec..5b7afc1b7d94 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json @@ -1,234 +1,466 @@ [ - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\Fake-License.txt", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\styles.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\System.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\blazorwasm.pdb.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.timezones.blat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.br", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_framework\\netstandard.dll.gz", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\blazorwasm.styles.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\app.css", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\custom-service-worker-assets.js", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\index.html", - "${ProjectPath}\\blazorhosted\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\serviceworkers\\my-service-worker.js" + "${OutputPath}\\wwwroot\\Fake-License.txt", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.br", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm.styles.css", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js", + "${OutputPath}\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js", + "${OutputPath}\\wwwroot\\Fake-License.txt", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css", + "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br", + "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.br", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\System.dll", + "${OutputPath}\\wwwroot\\_framework\\System.dll.br", + "${OutputPath}\\wwwroot\\_framework\\System.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br", + "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz", + "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br", + "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br", + "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", + "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", + "${OutputPath}\\wwwroot\\blazorwasm.styles.css", + "${OutputPath}\\wwwroot\\css\\app.css", + "${OutputPath}\\wwwroot\\custom-service-worker-assets.js", + "${OutputPath}\\wwwroot\\index.html", + "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.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 a15dcc0f7413..b8fac183f1df 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 @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj", + "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj", "Version": 2, "Source": "blazorwasm", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj", + "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj", "Version": 2, "Source": "RazorClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "RazorClassLibrary\\wwwroot", "Source": "RazorClassLibrary", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "Pattern": "**" }, { "Name": "blazorwasm\\wwwroot", "Source": "blazorwasm", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\blazorwasm\\LinkToWebRoot\\css\\app.css", + "Identity": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "css/app.css", "AssetKind": "Publish", @@ -64,10 +64,10 @@ "OriginalItemSpec": "LinkToWebRoot\\css\\app.css" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js", "AssetKind": "All", @@ -78,15 +78,15 @@ "AssetTraitValue": "boot", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js" + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Primary", @@ -95,13 +95,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat", "AssetKind": "Publish", @@ -112,13 +112,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm", "AssetKind": "Publish", @@ -129,13 +129,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat", "AssetKind": "Publish", @@ -146,13 +146,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat", "AssetKind": "Publish", @@ -163,13 +163,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat", "AssetKind": "Publish", @@ -180,13 +180,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat", "AssetKind": "Publish", @@ -197,13 +197,13 @@ "AssetTraitValue": "native", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json", "AssetKind": "Publish", @@ -217,2560 +217,2560 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.JavaScript.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.boot.json.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazor.webassembly.js.br", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br", + "RelativePath": "_framework/dotnet.js.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.timezones.blat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/dotnet.wasm.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.br", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll.gz", "AssetKind": "Publish", "AssetMode": "All", "AssetRole": "Alternative", - "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", "RelativePath": "custom-service-worker-assets.js", "AssetKind": "Publish", @@ -2784,10 +2784,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", "AssetKind": "Publish", @@ -2801,10 +2801,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", "AssetKind": "Publish", @@ -2818,10 +2818,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", "AssetKind": "Publish", @@ -2835,10 +2835,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", "AssetKind": "Publish", @@ -2852,10 +2852,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", "AssetKind": "Publish", @@ -2869,10 +2869,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", "AssetKind": "Publish", @@ -2886,10 +2886,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", "AssetKind": "Publish", @@ -2903,10 +2903,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", "AssetKind": "Publish", @@ -2920,10 +2920,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", "AssetKind": "Publish", @@ -2937,10 +2937,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", "AssetKind": "Publish", @@ -2954,10 +2954,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", "AssetKind": "Publish", @@ -2971,10 +2971,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "AssetKind": "Publish", @@ -2988,10 +2988,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", "AssetKind": "Publish", @@ -3005,10 +3005,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", "AssetKind": "Publish", @@ -3022,10 +3022,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", "AssetKind": "Publish", @@ -3039,10 +3039,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", "AssetKind": "Publish", @@ -3056,10 +3056,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", "AssetKind": "Publish", @@ -3073,10 +3073,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", "AssetKind": "Publish", @@ -3090,10 +3090,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.dll", "AssetKind": "Publish", @@ -3107,10 +3107,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", "AssetKind": "Publish", @@ -3124,10 +3124,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", "AssetKind": "Publish", @@ -3141,10 +3141,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.dll", "AssetKind": "Publish", @@ -3158,10 +3158,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.dll", "AssetKind": "Publish", @@ -3175,10 +3175,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Buffers.dll", "AssetKind": "Publish", @@ -3192,10 +3192,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.dll", "AssetKind": "Publish", @@ -3209,10 +3209,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.dll", "AssetKind": "Publish", @@ -3226,10 +3226,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.dll", "AssetKind": "Publish", @@ -3243,10 +3243,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.dll", "AssetKind": "Publish", @@ -3260,10 +3260,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.dll", "AssetKind": "Publish", @@ -3277,10 +3277,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.dll", "AssetKind": "Publish", @@ -3294,10 +3294,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", "AssetKind": "Publish", @@ -3311,10 +3311,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.dll", "AssetKind": "Publish", @@ -3328,10 +3328,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Console.dll", "AssetKind": "Publish", @@ -3345,10 +3345,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Debug.dll", "AssetKind": "Publish", @@ -3362,10 +3362,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", "AssetKind": "Publish", @@ -3379,10 +3379,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.dll", "AssetKind": "Publish", @@ -3396,10 +3396,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", "AssetKind": "Publish", @@ -3413,10 +3413,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.dll", "AssetKind": "Publish", @@ -3430,10 +3430,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.dll", "AssetKind": "Publish", @@ -3447,10 +3447,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.dll", "AssetKind": "Publish", @@ -3464,10 +3464,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.dll", "AssetKind": "Publish", @@ -3481,10 +3481,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.dll", "AssetKind": "Publish", @@ -3498,10 +3498,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.dll", "AssetKind": "Publish", @@ -3515,10 +3515,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.dll", "AssetKind": "Publish", @@ -3532,10 +3532,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.dll", "AssetKind": "Publish", @@ -3549,10 +3549,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", "AssetKind": "Publish", @@ -3566,10 +3566,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", "AssetKind": "Publish", @@ -3583,10 +3583,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.dll", "AssetKind": "Publish", @@ -3600,10 +3600,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.dll", "AssetKind": "Publish", @@ -3617,10 +3617,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", "AssetKind": "Publish", @@ -3634,10 +3634,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.dll", "AssetKind": "Publish", @@ -3651,10 +3651,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", "AssetKind": "Publish", @@ -3668,10 +3668,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.JavaScript.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", "AssetKind": "Publish", @@ -3685,10 +3685,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.dll", "AssetKind": "Publish", @@ -3702,10 +3702,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.dll", "AssetKind": "Publish", @@ -3719,10 +3719,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.dll", "AssetKind": "Publish", @@ -3736,10 +3736,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.dll", "AssetKind": "Publish", @@ -3753,10 +3753,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.dll", "AssetKind": "Publish", @@ -3770,10 +3770,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.dll", "AssetKind": "Publish", @@ -3787,10 +3787,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.dll", "AssetKind": "Publish", @@ -3804,10 +3804,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.dll", "AssetKind": "Publish", @@ -3821,10 +3821,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.dll", "AssetKind": "Publish", @@ -3838,10 +3838,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/System.dll", "AssetKind": "Publish", @@ -3855,10 +3855,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.dll", "AssetKind": "Publish", @@ -3872,10 +3872,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", "BasePath": "/", "RelativePath": "_framework/netstandard.dll", "AssetKind": "Publish", @@ -3889,10 +3889,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "/", "RelativePath": "blazorwasm.styles.css", "AssetKind": "All", @@ -3903,13 +3903,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", "BasePath": "/", "RelativePath": "serviceworkers/my-service-worker.js", "AssetKind": "Publish", @@ -3923,10 +3923,10 @@ "OriginalItemSpec": "wwwroot\\serviceworkers\\my-prod-service-worker.js" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "Fake-License.txt", "AssetKind": "All", @@ -3940,10 +3940,10 @@ "OriginalItemSpec": "wwwroot\\Fake-License.txt" }, { - "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\", "BasePath": "/", "RelativePath": "index.html", "AssetKind": "All", @@ -3957,10 +3957,10 @@ "OriginalItemSpec": "wwwroot\\index.html" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "styles.css", "AssetKind": "All", @@ -3974,10 +3974,10 @@ "OriginalItemSpec": "wwwroot\\styles.css" }, { - "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", + "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", "SourceId": "RazorClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\", "BasePath": "_content/RazorClassLibrary", "RelativePath": "wwwroot/exampleJsInterop.js", "AssetKind": "All", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs index 7ffcaa28073d..4c7895754c4f 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs @@ -476,7 +476,7 @@ public void Build_SatelliteAssembliesAreCopiedToBuildOutput() new FileInfo(finalPath).Should().Exist(); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, outputPath, intermediateOutputPath); diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs index 984ef19ab96a..0a5b41f15481 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs @@ -124,7 +124,7 @@ public void Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJso lib.Should().Exist(); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, outputPath, intermediateOutputPath); } @@ -175,7 +175,7 @@ public void JsModules_CanHaveDifferentBuildAndPublishModules() publishLibrary.GetString().Should().Be(wwwrootPublishLibrary.GetString()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, outputPath, intermediateOutputPath); @@ -250,7 +250,7 @@ public void JsModules_CanCustomizeBlazorInitialization() extension.Should().Exist(); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, outputPath, intermediateOutputPath); } @@ -316,7 +316,7 @@ public void JsModules_Hosted_CanCustomizeBlazorInitialization() extension.Should().Exist(); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, outputPath, intermediateOutputPath); } diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs index 24c661c81609..3aa25ccd7f44 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs @@ -2,13 +2,11 @@ // 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.Reflection; using System.Runtime.CompilerServices; using System.Text.Json; -using System.Text.RegularExpressions; using FluentAssertions; using Microsoft.AspNetCore.Razor.Tasks; using Microsoft.NET.TestFramework; @@ -21,20 +19,8 @@ namespace Microsoft.NET.Sdk.Razor.Tests public class AspNetSdkBaselineTest : AspNetSdkTest { private static readonly JsonSerializerOptions BaselineSerializationOptions = new() { WriteIndented = true }; - private static readonly string BaselineGenerationInstructions = - @"If the difference in baselines is expected, please re-generate the baselines. -Note, baseline generation must be done on a Windows device. -Start by ensuring you're dogfooding the SDK from the current branch (dotnet --version should be '*.0.0-dev'). - If you're not on the dogfood sdk, from the root of the repository run: - 1. dotnet clean - 2. .\restore.cmd - 3. .\build.cmd - 4. .\eng\dogfood.cmd - -Then, using the dogfood SDK run the .\src\RazorSdk\update-test-baselines.ps1 script."; - - protected static readonly string DotNetJSHashRegexPattern = "\\.[a-z0-9]{10}\\.js"; - protected static readonly string DotNetJSHashTemplate = ".[[hash]].js"; + private readonly StaticWebAssetsBaselineComparer _comparer; + private readonly StaticWebAssetsBaselineFactory _baselineFactory; private string _baselinesFolder; @@ -46,22 +32,20 @@ 4. .\eng\dogfood.cmd private bool _generateBaselines = GenerateBaselines; - // This allows templatizing paths that don't have a deterministic name, for example the files we gzip or brotli as part - // of Blazor compilations. We only need to do this for the manifest since the tests for files don't use the original - // path. Returning null avoids any transformation - protected Func PathTemplatizer { get; set; } = (asset, originalValue, related) => null; - public AspNetSdkBaselineTest(ITestOutputHelper log) : base(log) { TestAssembly = Assembly.GetCallingAssembly(); var testAssemblyMetadata = TestAssembly.GetCustomAttributes(); RuntimeVersion = testAssemblyMetadata.SingleOrDefault(a => a.Key == "NetCoreAppRuntimePackageVersion").Value; DefaultPackageVersion = testAssemblyMetadata.SingleOrDefault(a => a.Key == "DefaultTestBaselinePackageVersion").Value; + _comparer = CreateBaselineComparer(); + _baselineFactory = CreateBaselineFactory(); } public AspNetSdkBaselineTest(ITestOutputHelper log, bool generateBaselines) : this(log) { _generateBaselines = generateBaselines; + _comparer = CreateBaselineComparer(); } public TestAsset ProjectDirectory { get; set; } @@ -75,6 +59,16 @@ public AspNetSdkBaselineTest(ITestOutputHelper log, bool generateBaselines) : th protected Assembly TestAssembly { get; } + protected virtual StaticWebAssetsBaselineComparer CreateBaselineComparer() + { + return StaticWebAssetsBaselineComparer.Instance; + } + + private StaticWebAssetsBaselineFactory CreateBaselineFactory() + { + return StaticWebAssetsBaselineFactory.Instance; + } + protected virtual string ComputeBaselineFolder() => Path.Combine(TestContext.GetRepoRoot() ?? AppContext.BaseDirectory, "src", "Tests", "Microsoft.NET.Sdk.Razor.Tests", "StaticWebAssetsBaselines"); @@ -109,58 +103,6 @@ public StaticWebAssetsManifest LoadPublishManifest(string suffix = "", [CallerMe } } - private void ApplyTemplatizerToAssets(StaticWebAssetsManifest manifest) - { - var assets = manifest.Assets; - var assetsById = manifest.Assets.ToDictionary(a => a.Identity); - for (int i = 0; i < assets.Length; i++) - { - var asset = assets[i]; - RemoveHashFromAsset(asset); - var relatedAsset = string.IsNullOrEmpty(asset.RelatedAsset) || !assetsById.TryGetValue(asset.RelatedAsset, out var related) ? - null : related; - asset.Identity = PathTemplatizer(asset, asset.Identity, null) ?? asset.Identity; - asset.RelatedAsset = PathTemplatizer(asset, asset.RelatedAsset, relatedAsset) ?? asset.RelatedAsset; - asset.OriginalItemSpec = PathTemplatizer(asset, asset.OriginalItemSpec, null) ?? asset.OriginalItemSpec; - } - } - - private void RemoveHashFromAsset(StaticWebAsset asset) - { - asset.RelativePath = Regex.Replace(asset.RelativePath, DotNetJSHashRegexPattern, DotNetJSHashTemplate); - asset.Identity = Regex.Replace(asset.Identity, DotNetJSHashRegexPattern, DotNetJSHashTemplate); - asset.OriginalItemSpec = Regex.Replace(asset.OriginalItemSpec, DotNetJSHashRegexPattern, DotNetJSHashTemplate); - asset.RelatedAsset = Regex.Replace(asset.RelatedAsset, DotNetJSHashRegexPattern, DotNetJSHashTemplate); - } - - private void UpdateCustomPackageVersions(string restorePath, StaticWebAssetsManifest manifest) - { - foreach (var asset in manifest.Assets) - { - asset.Identity = UpdateAssetVersion(restorePath, asset.Identity); - asset.ContentRoot = UpdateAssetVersion(restorePath, asset.ContentRoot); - asset.ContentRoot = asset.ContentRoot.EndsWith(Path.DirectorySeparatorChar) ? asset.ContentRoot : asset.ContentRoot + Path.DirectorySeparatorChar; - asset.OriginalItemSpec = UpdateAssetVersion(restorePath, asset.OriginalItemSpec); - asset.RelatedAsset = UpdateAssetVersion(restorePath, asset.RelatedAsset); - } - - string UpdateAssetVersion(string restorePath, string property) - { - if (property.Contains(restorePath)) - { - var segments = property.Substring(restorePath.Length).Split(Path.DirectorySeparatorChar, StringSplitOptions.RemoveEmptyEntries); - ref var versionSegment = ref segments[1]; - if (versionSegment != RuntimeVersion && versionSegment != DefaultPackageVersion) - { - versionSegment = "[[CustomPackageVersion]]"; - property = Path.Combine(segments.Prepend(restorePath).ToArray()); - } - } - - return property; - } - } - protected void AssertBuildAssets( StaticWebAssetsManifest manifest, string outputFolder, @@ -191,37 +133,31 @@ protected void AssertBuildAssets( .Select(a => Path.GetFullPath(Path.Combine(a.ContentRoot, a.RelativePath)))) .ToArray(); + var existingFiles = _baselineFactory.TemplatizeExpectedFiles( + wwwRootFiles + .Concat(computedFiles.Select(a => a.Identity)) + .Concat(copyToOutputDirectoryFiles) + .Distinct() + .OrderBy(f => f, StringComparer.Ordinal) + .ToArray(), + TestContext.Current.NuGetCachePath, + ProjectDirectory.TestRoot, + intermediateOutputPath, + outputFolder); + + if (!_generateBaselines) { - var expected = LoadExpectedFilesBaseline(manifest.ManifestType, outputFolder, intermediateOutputPath, suffix, name) + var expected = LoadExpectedFilesBaseline(manifest.ManifestType, suffix, name) .OrderBy(f => f, StringComparer.Ordinal); - var existingFiles = wwwRootFiles.Concat(computedFiles.Select(a => PathTemplatizer(a, a.Identity, null) ?? a.Identity)).Concat(copyToOutputDirectoryFiles) - .Distinct() - .Select(f => Regex.Replace(f, DotNetJSHashRegexPattern, DotNetJSHashTemplate)) - .OrderBy(f => f, StringComparer.Ordinal) - .ToArray(); - existingFiles.Should().BeEquivalentTo(expected); } else { - var templatizedFiles = TemplatizeExpectedFiles( - wwwRootFiles - .Concat(computedFiles.Select(a => PathTemplatizer(a, a.Identity, null) ?? a.Identity)) - .Concat(copyToOutputDirectoryFiles) - .Distinct() - .OrderBy(f => f, StringComparer.Ordinal) - .ToArray(), - TestContext.Current.NuGetCachePath, - outputFolder, - ProjectDirectory.TestRoot, - intermediateOutputPath) - .OrderBy(o => o, StringComparer.Ordinal); - File.WriteAllText( GetExpectedFilesPath(suffix, name, manifest.ManifestType), - JsonSerializer.Serialize(templatizedFiles, BaselineSerializationOptions)); + JsonSerializer.Serialize(existingFiles, BaselineSerializationOptions)); } } @@ -235,7 +171,8 @@ protected void AssertPublishAssets( var fileEnumerationOptions = new EnumerationOptions { RecurseSubdirectories = true }; string wwwRootFolder = Path.Combine(publishFolder, "wwwroot"); var wwwRootFiles = Directory.Exists(wwwRootFolder) ? - Directory.GetFiles(wwwRootFolder, "*", fileEnumerationOptions) : + Directory.GetFiles(wwwRootFolder, "*", fileEnumerationOptions) + .Select(f => _baselineFactory.TemplatizeFilePath(f, null, null, intermediateOutputPath, publishFolder)) : Array.Empty(); // Computed publish assets must exist on disk (we do this check to quickly identify when something is not being @@ -252,101 +189,47 @@ protected void AssertPublishAssets( !string.Equals(a.AssetMode, StaticWebAsset.AssetModes.Reference)) .Select(a => Path.Combine(wwwRootFolder, a.ComputeTargetPath("", Path.DirectorySeparatorChar))); - var existingFiles = wwwRootFiles.Concat(computedFiles.Select(f => PathTemplatizer(f, f.Identity, null) ?? f.Identity)).Concat(copyToPublishDirectoryFiles) - .Distinct() - .OrderBy(f => f, StringComparer.Ordinal) - .ToArray(); + var existingFiles = _baselineFactory.TemplatizeExpectedFiles( + wwwRootFiles + .Concat(computedFiles.Select(a => a.Identity)) + .Concat(copyToPublishDirectoryFiles) + .Distinct() + .OrderBy(f => f, StringComparer.Ordinal) + .ToArray(), + TestContext.Current.NuGetCachePath, + ProjectDirectory.TestRoot, + intermediateOutputPath, + publishFolder); if (!_generateBaselines) { - existingFiles = existingFiles.Select(f => Regex.Replace(f, DotNetJSHashRegexPattern, DotNetJSHashTemplate)).ToArray(); - - var expected = LoadExpectedFilesBaseline(manifest.ManifestType, publishFolder, intermediateOutputPath, suffix, name); + var expected = LoadExpectedFilesBaseline(manifest.ManifestType, suffix, name); existingFiles.Should().BeEquivalentTo(expected); } else { - var templatizedFiles = TemplatizeExpectedFiles( - wwwRootFiles - .Concat(computedFiles.Select(f => PathTemplatizer(f, f.Identity, null) ?? f.Identity)) - .Concat(copyToPublishDirectoryFiles) - .Distinct() - .OrderBy(f => f, StringComparer.Ordinal) - .ToArray(), - TestContext.Current.NuGetCachePath, - publishFolder, - ProjectDirectory.TestRoot, - intermediateOutputPath); - File.WriteAllText( GetExpectedFilesPath(suffix, name, manifest.ManifestType), - JsonSerializer.Serialize(templatizedFiles, BaselineSerializationOptions)); + JsonSerializer.Serialize(existingFiles, BaselineSerializationOptions)); } } public string[] LoadExpectedFilesBaseline( string type, - string buildOrPublishPath, - string intermediateOutputPath, string suffix, string name) { if (!_generateBaselines) { using var filesBaselineStream = GetExpectedFilesEmbeddedResource(suffix, name, type); - return ApplyPathsToTemplatedFilePaths( - JsonSerializer.Deserialize(filesBaselineStream), - TestContext.Current.NuGetCachePath, - buildOrPublishPath, - ProjectDirectory.TestRoot, - intermediateOutputPath) - .ToArray(); + return JsonSerializer.Deserialize(filesBaselineStream); } else { - return Array.Empty(); } } - private IEnumerable TemplatizeExpectedFiles( - IEnumerable files, - string restorePath, - string buildOrPublishFolder, - string projectPath, - string intermediateOutputPath) - { - foreach (var f in files) - { - var updated = Regex.Replace(f, DotNetJSHashRegexPattern, DotNetJSHashTemplate); - updated = updated.Replace(restorePath, "${RestorePath}") - .Replace(RuntimeVersion, "${RuntimeVersion}") - .Replace(DefaultTfm, "${Tfm}") - .Replace(DefaultPackageVersion, "${PackageVersion}") - .Replace(buildOrPublishFolder, "${OutputPath}") - .Replace(projectPath, "${ProjectPath}") - .Replace(intermediateOutputPath, "${IntermediateOutputPath}") - .Replace(Path.DirectorySeparatorChar, '\\'); - yield return updated; - } - } - - private IEnumerable ApplyPathsToTemplatedFilePaths( - IEnumerable files, - string restorePath, - string buildOrPublishFolder, - string projectPath, - string intermediateOutputPath) => - files.Select(f => f.Replace("${RestorePath}", restorePath) - .Replace("${RuntimeVersion}", RuntimeVersion) - .Replace("${Tfm}", DefaultTfm) - .Replace("${PackageVersion}", DefaultPackageVersion) - .Replace("${OutputPath}", buildOrPublishFolder) - .Replace("${IntermediateOutputPath}", intermediateOutputPath) - .Replace("${ProjectPath}", projectPath) - .Replace('\\', Path.DirectorySeparatorChar)); - - internal void AssertManifest( StaticWebAssetsManifest manifest, StaticWebAssetsManifest expected, @@ -355,159 +238,17 @@ internal void AssertManifest( { if (!_generateBaselines) { - ApplyPathsToAssets(expected, ProjectDirectory.TestRoot, TestContext.Current.NuGetCachePath); - ApplyTemplatizerToAssets(manifest); - UpdateCustomPackageVersions(TestContext.Current.NuGetCachePath, manifest); - //Many of the properties in the manifest contain full paths, to avoid flakiness on the tests, we don't compare the full paths. - manifest.Version.Should().Be(expected.Version); - manifest.Source.Should().Be(expected.Source); - manifest.BasePath.Should().Be(expected.BasePath); - manifest.Mode.Should().Be(expected.Mode); - manifest.ManifestType.Should().Be(expected.ManifestType); - - manifest.ReferencedProjectsConfiguration.Should().HaveSameCount(expected.ReferencedProjectsConfiguration); - - // Relax the check for project reference configuration items see - // https://github.com/dotnet/sdk/pull/27381#issuecomment-1228764471 - // for details. - //manifest.ReferencedProjectsConfiguration.OrderBy(cm => cm.Identity) - // .Should() - // .BeEquivalentTo(expected.ReferencedProjectsConfiguration.OrderBy(cm => cm.Identity)); - - manifest.DiscoveryPatterns.OrderBy(dp => dp.Name).Should().BeEquivalentTo(expected.DiscoveryPatterns.OrderBy(dp => dp.Name)); - - var manifestAssets = manifest.Assets.OrderBy(a => a.BasePath).ThenBy(a => a.RelativePath).ThenBy(a => a.AssetKind); - var expectedAssets = expected.Assets.OrderBy(a => a.BasePath).ThenBy(a => a.RelativePath).ThenBy(a => a.AssetKind); - - // If there's a mismatch in the number of assets, just print the strict difference in the asset `Identity` - if (manifestAssets.Count() != expectedAssets.Count()) - { - ThrowAssetCountMismatchError(manifestAssets, expectedAssets); - } - - // Otherwise, do a property level comparison of all assets - var manifestAssetsEnumerator = manifestAssets.GetEnumerator(); - var expectedAssetsEnumerator = expectedAssets.GetEnumerator(); - - var differences = new List(); - - do - { - var manifestAsset = manifestAssetsEnumerator.Current; - var expectedAsset = expectedAssetsEnumerator.Current; - - if (manifestAsset is null && expectedAsset is null) - { - continue; - } - - var assetDifferences = new List(); - - if (manifestAsset.Identity != expectedAsset.Identity) - { - assetDifferences.Add($"Expected manifest Identity of {expectedAsset.Identity} but found {manifestAsset.Identity}."); - } - if (manifestAsset.SourceType != expectedAsset.SourceType) - { - assetDifferences.Add($"Expected manifest SourceType of {expectedAsset.SourceType} but found {manifestAsset.SourceType}."); - } - if (manifestAsset.SourceId != expectedAsset.SourceId) - { - assetDifferences.Add($"Expected manifest SourceId of {expectedAsset.SourceId} but found {manifestAsset.SourceId}."); - } - if (manifestAsset.ContentRoot != expectedAsset.ContentRoot) - { - assetDifferences.Add($"Expected manifest ContentRoot of {expectedAsset.ContentRoot} but found {manifestAsset.ContentRoot}."); - } - if (manifestAsset.BasePath != expectedAsset.BasePath) - { - assetDifferences.Add($"Expected manifest BasePath of {expectedAsset.BasePath} but found {manifestAsset.BasePath}."); - } - if (manifestAsset.RelativePath != expectedAsset.RelativePath) - { - assetDifferences.Add($"Expected manifest RelativePath of {expectedAsset.RelativePath} but found {manifestAsset.RelativePath}."); - } - if (manifestAsset.AssetKind != expectedAsset.AssetKind) - { - assetDifferences.Add($"Expected manifest AssetKind of {expectedAsset.AssetKind} but found {manifestAsset.AssetKind}."); - } - if (manifestAsset.AssetMode != expectedAsset.AssetMode) - { - assetDifferences.Add($"Expected manifest AssetMode of {expectedAsset.AssetMode} but found {manifestAsset.AssetMode}."); - } - if (manifestAsset.AssetRole != expectedAsset.AssetRole) - { - assetDifferences.Add($"Expected manifest AssetRole of {expectedAsset.AssetRole} but found {manifestAsset.AssetRole}."); - } - if (manifestAsset.RelatedAsset != expectedAsset.RelatedAsset) - { - assetDifferences.Add($"Expected manifest RelatedAsset of {expectedAsset.RelatedAsset} but found {manifestAsset.RelatedAsset}."); - } - if (manifestAsset.AssetTraitName != expectedAsset.AssetTraitName) - { - assetDifferences.Add($"Expected manifest AssetTraitName of {expectedAsset.AssetTraitName} but found {manifestAsset.AssetTraitName}."); - } - if (manifestAsset.AssetTraitValue != expectedAsset.AssetTraitValue) - { - assetDifferences.Add($"Expected manifest AssetTraitValue of {expectedAsset.AssetTraitValue} but found {manifestAsset.AssetTraitValue}."); - } - if (manifestAsset.CopyToOutputDirectory != expectedAsset.CopyToOutputDirectory) - { - assetDifferences.Add($"Expected manifest CopyToOutputDirectory of {expectedAsset.CopyToOutputDirectory} but found {manifestAsset.CopyToOutputDirectory}."); - } - if (manifestAsset.CopyToPublishDirectory != expectedAsset.CopyToPublishDirectory) - { - assetDifferences.Add($"Expected manifest CopyToPublishDirectory of {expectedAsset.CopyToPublishDirectory} but found {manifestAsset.CopyToPublishDirectory}."); - } - if (manifestAsset.OriginalItemSpec != expectedAsset.OriginalItemSpec) - { - assetDifferences.Add($"Expected manifest OriginalItemSpec of {expectedAsset.OriginalItemSpec} but found {manifestAsset.OriginalItemSpec}."); - } - - if (assetDifferences.Any()) - { - differences.Add(@$" -================================================== - -For {expectedAsset.Identity}: - -{string.Join(Environment.NewLine, assetDifferences)} - -=================================================="); - } - - } while (manifestAssetsEnumerator.MoveNext() && expectedAssetsEnumerator.MoveNext()); - - differences.Should().BeEmpty( - @$" the generated manifest should match the expected baseline. - -{BaselineGenerationInstructions} - -"); - - static void ThrowAssetCountMismatchError(IEnumerable manifestAssets, IEnumerable expectedAssets) - { - var missingAssets = expectedAssets.Except(manifestAssets); - var unexpectedAssets = manifestAssets.Except(expectedAssets); - - var differences = new List(); - - if (missingAssets.Any()) - { - differences.Add($@"The following expected assets weren't found in the manifest: - {string.Join($"{Environment.NewLine}\t", missingAssets.Select(a => a.Identity))}"); - } - - if (unexpectedAssets.Any()) - { - differences.Add($@"The following additional unexpected assets were found in the manifest: - {string.Join($"{Environment.NewLine}\t", unexpectedAssets.Select(a => a.Identity))}"); - } - - throw new Exception($@"{string.Join(Environment.NewLine, differences)} + // We are going to compare the generated manifest with the current manifest. + // For that, we "templatize" the current manifest to avoid issues with hashes, versions, etc. + _baselineFactory.ToTemplate( + manifest, + ProjectDirectory.Path, + TestContext.Current.NuGetCachePath, + RuntimeVersion, + DefaultTfm, + DefaultPackageVersion); -{BaselineGenerationInstructions}"); - } + _comparer.AssertManifest(manifest, expected); } else { @@ -534,147 +275,10 @@ private string GetExpectedFilesPath(string suffix, string name, string manifestT private Stream GetExpectedFilesEmbeddedResource(string suffix, string name, string manifestType) => TestAssembly.GetManifestResourceStream(string.Join('.', EmbeddedResourcePrefix, $"{name}{(!string.IsNullOrEmpty(suffix) ? $"_{suffix}" : "")}.{manifestType}.files.json")); - private void ApplyPathsToAssets( - StaticWebAssetsManifest manifest, - string projectRoot, - string restorePath) - { - foreach (var asset in manifest.Assets) - { - asset.Identity = asset.Identity.Replace("${ProjectRoot}", projectRoot); - asset.Identity = ReplaceRestorePath(restorePath, asset.Identity); - - asset.RelativePath = asset.RelativePath.Replace("${RuntimeVersion}", RuntimeVersion); - - asset.ContentRoot = asset.ContentRoot.Replace("${ProjectRoot}", projectRoot); - asset.ContentRoot = ReplaceRestorePath(restorePath, asset.ContentRoot); - - asset.RelatedAsset = asset.RelatedAsset.Replace("${ProjectRoot}", projectRoot); - asset.RelatedAsset = ReplaceRestorePath(restorePath, asset.RelatedAsset); - - asset.OriginalItemSpec = asset.OriginalItemSpec.Replace("${ProjectRoot}", projectRoot); - asset.OriginalItemSpec = ReplaceRestorePath(restorePath, asset.OriginalItemSpec); - } - - foreach (var discovery in manifest.DiscoveryPatterns) - { - discovery.ContentRoot = discovery.ContentRoot.Replace("${ProjectRoot}", projectRoot); - discovery.ContentRoot = discovery.ContentRoot - .Replace('\\', Path.DirectorySeparatorChar); - - discovery.Name = discovery.Name.Replace('\\', Path.DirectorySeparatorChar); - discovery.Pattern.Replace('\\', Path.DirectorySeparatorChar); - } - - foreach (var relatedConfiguration in manifest.ReferencedProjectsConfiguration) - { - relatedConfiguration.Identity = relatedConfiguration.Identity.Replace("${ProjectRoot}", projectRoot).Replace('\\', Path.DirectorySeparatorChar); - } - - string ReplaceRestorePath(string restorePath, string property) - { - return property - .Replace("${RestorePath}", restorePath) - .Replace("${Tfm}", DefaultTfm) - .Replace("${RuntimeVersion}", RuntimeVersion) - .Replace("${PackageVersion}", DefaultPackageVersion) - .Replace('\\', Path.DirectorySeparatorChar); - } - } - private string Templatize(StaticWebAssetsManifest manifest, string projectRoot, string restorePath) { - manifest.Hash = "__hash__"; - var assetsByIdentity = manifest.Assets.ToDictionary(a => a.Identity); - foreach (var asset in manifest.Assets) - { - TemplatizeAsset(projectRoot, restorePath, asset); - - if (!string.IsNullOrEmpty(asset.RelatedAsset)) - { - var relatedAsset = string.IsNullOrEmpty(asset.RelatedAsset) || !assetsByIdentity.TryGetValue(asset.RelatedAsset, out var related) ? - null : related; - if (relatedAsset != null) - { - TemplatizeAsset(projectRoot, restorePath, relatedAsset); - } - TemplatizeAsset(projectRoot, restorePath, asset); - asset.RelatedAsset = PathTemplatizer(asset, asset.RelatedAsset, relatedAsset) ?? asset.RelatedAsset; - } - - asset.OriginalItemSpec = asset.OriginalItemSpec.Replace(projectRoot, "${ProjectRoot}"); - asset.OriginalItemSpec = TemplatizeRestorePath(restorePath, asset.OriginalItemSpec); - asset.OriginalItemSpec = PathTemplatizer(asset, asset.OriginalItemSpec, null) ?? asset.OriginalItemSpec; - } - - foreach (var discovery in manifest.DiscoveryPatterns) - { - discovery.ContentRoot = discovery.ContentRoot.Replace(projectRoot, "${ProjectRoot}"); - discovery.ContentRoot = discovery.ContentRoot - .Replace(Path.DirectorySeparatorChar, '\\'); - discovery.Name = discovery.Name.Replace(Path.DirectorySeparatorChar, '\\'); - discovery.Pattern = discovery.Pattern.Replace(Path.DirectorySeparatorChar, '\\'); - } - - foreach (var relatedManifest in manifest.ReferencedProjectsConfiguration) - { - relatedManifest.Identity = relatedManifest.Identity.Replace(projectRoot, "${ProjectRoot}").Replace(Path.DirectorySeparatorChar, '\\'); - } - - // Sor everything now to ensure we produce stable baselines independent of the machine they were generated on. - Array.Sort(manifest.DiscoveryPatterns, (l, r) => StringComparer.Ordinal.Compare(l.Name, r.Name)); - Array.Sort(manifest.Assets, (l, r) => StringComparer.Ordinal.Compare(l.Identity, r.Identity)); - Array.Sort(manifest.ReferencedProjectsConfiguration, (l, r) => StringComparer.Ordinal.Compare(l.Identity, r.Identity)); + _baselineFactory.ToTemplate(manifest, projectRoot, restorePath, RuntimeVersion, DefaultTfm, DefaultPackageVersion); return JsonSerializer.Serialize(manifest, BaselineSerializationOptions); - - void TemplatizeAsset(string projectRoot, string restorePath, StaticWebAsset asset) - { - asset.Identity = asset.Identity.Replace(projectRoot, "${ProjectRoot}"); - asset.Identity = TemplatizeRestorePath(restorePath, asset.Identity); - asset.Identity = PathTemplatizer(asset, asset.Identity, null) ?? asset.Identity; - - asset.RelativePath = Regex.Replace(asset.RelativePath, DotNetJSHashRegexPattern, DotNetJSHashTemplate); - asset.RelativePath = asset.RelativePath.Replace(RuntimeVersion, "${RuntimeVersion}"); - - asset.ContentRoot = asset.ContentRoot.Replace(projectRoot, "${ProjectRoot}"); - asset.ContentRoot = TemplatizeRestorePath(restorePath, asset.ContentRoot) + '\\'; - - asset.RelatedAsset = asset.RelatedAsset.Replace(projectRoot, "${ProjectRoot}"); - asset.RelatedAsset = TemplatizeRestorePath(restorePath, asset.RelatedAsset); - } - - string TemplatizeRestorePath(string restorePath, string property) - { - property = property - .Replace(DefaultTfm, "${Tfm}") - .Replace(restorePath, "${RestorePath}") - .Replace(Path.DirectorySeparatorChar, '\\'); - - var customPackageVersion = true; - var segments = property.Split('\\', StringSplitOptions.RemoveEmptyEntries); - for (var i = 0; i < segments.Length; i++) - { - ref var segment = ref segments[i]; - segment = Regex.Replace(segment, DotNetJSHashRegexPattern, DotNetJSHashTemplate); - if (segment.Contains(RuntimeVersion)) - { - segment = segment.Replace(RuntimeVersion, "${RuntimeVersion}"); - customPackageVersion = false; - } - if (segment == DefaultPackageVersion) - { - segment = "${PackageVersion}"; - customPackageVersion = false; - } - } - - if (segments.Length > 0 && segments[0] == "${RestorePath}" && customPackageVersion) - { - segments[2] = "[[CustomPackageVersion]]"; - } - - return string.Join('\\', segments); - } } } } diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs index 71f999afb182..d49be6793a58 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs @@ -90,7 +90,7 @@ public void Build_DiscoversJsModulesBasedOnPatterns() buildManifest.DiscoveryPatterns.Should().BeEmpty(); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)), + buildManifest, outputPath, intermediateOutputPath); } @@ -117,7 +117,7 @@ public void Publish_PublishesBundleToTheRightLocation() AssertManifest(manifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, outputPath, intermediateOutputPath); } @@ -213,12 +213,13 @@ public void BuildProjectWithReferences_IncorporatesInitializersFromClassLibrarie var outputPath = build.GetOutputDirectory(DefaultTfm, "Debug").ToString(); var finalPath = Path.Combine(intermediateOutputPath, "staticwebassets.build.json"); + var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)), + manifest, LoadBuildManifest()); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)), + manifest, outputPath, intermediateOutputPath); @@ -250,17 +251,19 @@ public void PublishProjectWithReferences_IncorporatesInitializersFromClassLibrar var outputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").ToString(); var path = Path.Combine(intermediateOutputPath, "staticwebassets.build.json"); + var buildManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + buildManifest, LoadBuildManifest()); var finalPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"); + var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)), + publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)), + publishManifest, outputPath, intermediateOutputPath); @@ -311,12 +314,13 @@ public void PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitial LoadBuildManifest()); var finalPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"); + var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)), + manifest, LoadPublishManifest()); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)), + manifest, outputPath, intermediateOutputPath); diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs index 51b08a817ff5..232ea5137ca6 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs @@ -425,12 +425,13 @@ public void BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles() // GenerateStaticWebAssetsManifest should copy the file to the output folder. var finalPath = Path.Combine(outputPath, "AppWithPackageAndP2PReference.staticwebassets.runtime.json"); new FileInfo(finalPath).Should().Exist(); + var buildManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), + buildManifest, LoadBuildManifest()); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), + buildManifest, outputPath, intermediateOutputPath); @@ -510,12 +511,13 @@ public void ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions() var finalPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"); new FileInfo(finalPath).Should().Exist(); + var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"))); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"))), + publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"))), + publishManifest, outputPath, intermediateOutputPath); diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs new file mode 100644 index 000000000000..4fbb015ac931 --- /dev/null +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs @@ -0,0 +1,251 @@ +// 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 FluentAssertions; +using Microsoft.AspNetCore.Razor.Tasks; + +namespace Microsoft.NET.Sdk.Razor.Tests; + +public class StaticWebAssetsBaselineComparer +{ + private static readonly string BaselineGenerationInstructions = + @"If the difference in baselines is expected, please re-generate the baselines. +Note, baseline generation must be done on a Windows device. +Start by ensuring you're dogfooding the SDK from the current branch (dotnet --version should be '*.0.0-dev'). + If you're not on the dogfood sdk, from the root of the repository run: + 1. dotnet clean + 2. .\restore.cmd + 3. .\build.cmd + 4. .\eng\dogfood.cmd + +Then, using the dogfood SDK run the .\src\RazorSdk\update-test-baselines.ps1 script."; + + public static StaticWebAssetsBaselineComparer Instance { get; } = new(); + + internal void AssertManifest(StaticWebAssetsManifest expected, StaticWebAssetsManifest manifest) + { + //Many of the properties in the manifest contain full paths, to avoid flakiness on the tests, we don't compare the full paths. + manifest.Version.Should().Be(expected.Version); + manifest.Source.Should().Be(expected.Source); + manifest.BasePath.Should().Be(expected.BasePath); + manifest.Mode.Should().Be(expected.Mode); + manifest.ManifestType.Should().Be(expected.ManifestType); + + manifest.ReferencedProjectsConfiguration.Should().HaveSameCount(expected.ReferencedProjectsConfiguration); + + // Relax the check for project reference configuration items see + // https://github.com/dotnet/sdk/pull/27381#issuecomment-1228764471 + // for details. + //manifest.ReferencedProjectsConfiguration.OrderBy(cm => cm.Identity) + // .Should() + // .BeEquivalentTo(expected.ReferencedProjectsConfiguration.OrderBy(cm => cm.Identity)); + + manifest.DiscoveryPatterns.OrderBy(dp => dp.Name).Should().BeEquivalentTo(expected.DiscoveryPatterns.OrderBy(dp => dp.Name)); + + var manifestAssets = manifest.Assets + .OrderBy(a => a.BasePath) + .ThenBy(a => a.RelativePath) + .ThenBy(a => a.AssetKind) + .GroupBy(a => GetGroup(a)) + .ToDictionary(a => a.Key, a => a.ToArray()); + + var expectedAssets = expected.Assets + .OrderBy(a => a.BasePath) + .ThenBy(a => a.RelativePath) + .ThenBy(a => a.AssetKind) + .GroupBy(a => GetGroup(a)) + .ToDictionary(a => a.Key, a => a.ToArray()); + + foreach (var (group, manifestAssetsGroup) in manifestAssets) + { + var expectedAssetsGroup = expectedAssets[group]; + CompareGroup(group, manifestAssetsGroup, expectedAssetsGroup); + } + } + + protected virtual void CompareGroup(string group, StaticWebAsset[] manifestAssets, StaticWebAsset[] expectedAssets) + { + var comparisonMode = CompareAssetCounts(group, manifestAssets, expectedAssets); + + // Otherwise, do a property level comparison of all assets + switch (comparisonMode) + { + case GroupComparisonMode.Exact: + break; + case GroupComparisonMode.AllowAdditionalAssets: + break; + default: + break; + } + + var differences = new List(); + var assetDifferences = new List(); + var groupLength = Math.Min(manifestAssets.Length, expectedAssets.Length); + for (var i = 0; i < groupLength; i++) + { + var manifestAsset = manifestAssets[i]; + var expectedAsset = expectedAssets[i]; + + ComputeAssetDifferences(assetDifferences, manifestAsset, expectedAsset); + + if (assetDifferences.Any()) + { + differences.Add(@$" +================================================== + +For {expectedAsset.Identity}: + +{string.Join(Environment.NewLine, assetDifferences)} + +=================================================="); + } + + assetDifferences.Clear(); + } + + differences.Should().BeEmpty( + @$" the generated manifest should match the expected baseline. + +{BaselineGenerationInstructions} + +"); + } + + private GroupComparisonMode CompareAssetCounts(string group, StaticWebAsset[] manifestAssets, StaticWebAsset[] expectedAssets) + { + var comparisonMode = GetGroupComparisonMode(group); + + // If there's a mismatch in the number of assets, just print the strict difference in the asset `Identity` + switch (comparisonMode) + { + case GroupComparisonMode.Exact: + if (manifestAssets.Length != expectedAssets.Length) + { + ThrowAssetCountMismatchError(manifestAssets, expectedAssets); + } + break; + case GroupComparisonMode.AllowAdditionalAssets: + if (expectedAssets.Except(manifestAssets).Any()) + { + ThrowAssetCountMismatchError(manifestAssets, expectedAssets); + } + break; + default: + break; + } + + return comparisonMode; + + static void ThrowAssetCountMismatchError(StaticWebAsset[] manifestAssets, StaticWebAsset[] expectedAssets) + { + var missingAssets = expectedAssets.Except(manifestAssets); + var unexpectedAssets = manifestAssets.Except(expectedAssets); + + var differences = new List(); + + if (missingAssets.Any()) + { + differences.Add($@"The following expected assets weren't found in the manifest: + {string.Join($"{Environment.NewLine}\t", missingAssets.Select(a => a.Identity))}"); + } + + if (unexpectedAssets.Any()) + { + differences.Add($@"The following additional unexpected assets were found in the manifest: + {string.Join($"{Environment.NewLine}\t", unexpectedAssets.Select(a => a.Identity))}"); + } + + throw new Exception($@"{string.Join(Environment.NewLine, differences)} + +{BaselineGenerationInstructions}"); + } + } + + protected virtual GroupComparisonMode GetGroupComparisonMode(string group) + { + return GroupComparisonMode.Exact; + } + + private static void ComputeAssetDifferences(List assetDifferences, StaticWebAsset manifestAsset, StaticWebAsset expectedAsset) + { + if (manifestAsset.Identity != expectedAsset.Identity) + { + assetDifferences.Add($"Expected manifest Identity of {expectedAsset.Identity} but found {manifestAsset.Identity}."); + } + if (manifestAsset.SourceType != expectedAsset.SourceType) + { + assetDifferences.Add($"Expected manifest SourceType of {expectedAsset.SourceType} but found {manifestAsset.SourceType}."); + } + if (manifestAsset.SourceId != expectedAsset.SourceId) + { + assetDifferences.Add($"Expected manifest SourceId of {expectedAsset.SourceId} but found {manifestAsset.SourceId}."); + } + if (manifestAsset.ContentRoot != expectedAsset.ContentRoot) + { + assetDifferences.Add($"Expected manifest ContentRoot of {expectedAsset.ContentRoot} but found {manifestAsset.ContentRoot}."); + } + if (manifestAsset.BasePath != expectedAsset.BasePath) + { + assetDifferences.Add($"Expected manifest BasePath of {expectedAsset.BasePath} but found {manifestAsset.BasePath}."); + } + if (manifestAsset.RelativePath != expectedAsset.RelativePath) + { + assetDifferences.Add($"Expected manifest RelativePath of {expectedAsset.RelativePath} but found {manifestAsset.RelativePath}."); + } + if (manifestAsset.AssetKind != expectedAsset.AssetKind) + { + assetDifferences.Add($"Expected manifest AssetKind of {expectedAsset.AssetKind} but found {manifestAsset.AssetKind}."); + } + if (manifestAsset.AssetMode != expectedAsset.AssetMode) + { + assetDifferences.Add($"Expected manifest AssetMode of {expectedAsset.AssetMode} but found {manifestAsset.AssetMode}."); + } + if (manifestAsset.AssetRole != expectedAsset.AssetRole) + { + assetDifferences.Add($"Expected manifest AssetRole of {expectedAsset.AssetRole} but found {manifestAsset.AssetRole}."); + } + if (manifestAsset.RelatedAsset != expectedAsset.RelatedAsset) + { + assetDifferences.Add($"Expected manifest RelatedAsset of {expectedAsset.RelatedAsset} but found {manifestAsset.RelatedAsset}."); + } + if (manifestAsset.AssetTraitName != expectedAsset.AssetTraitName) + { + assetDifferences.Add($"Expected manifest AssetTraitName of {expectedAsset.AssetTraitName} but found {manifestAsset.AssetTraitName}."); + } + if (manifestAsset.AssetTraitValue != expectedAsset.AssetTraitValue) + { + assetDifferences.Add($"Expected manifest AssetTraitValue of {expectedAsset.AssetTraitValue} but found {manifestAsset.AssetTraitValue}."); + } + if (manifestAsset.CopyToOutputDirectory != expectedAsset.CopyToOutputDirectory) + { + assetDifferences.Add($"Expected manifest CopyToOutputDirectory of {expectedAsset.CopyToOutputDirectory} but found {manifestAsset.CopyToOutputDirectory}."); + } + if (manifestAsset.CopyToPublishDirectory != expectedAsset.CopyToPublishDirectory) + { + assetDifferences.Add($"Expected manifest CopyToPublishDirectory of {expectedAsset.CopyToPublishDirectory} but found {manifestAsset.CopyToPublishDirectory}."); + } + if (manifestAsset.OriginalItemSpec != expectedAsset.OriginalItemSpec) + { + assetDifferences.Add($"Expected manifest OriginalItemSpec of {expectedAsset.OriginalItemSpec} but found {manifestAsset.OriginalItemSpec}."); + } + } + + protected virtual string GetGroup(StaticWebAsset asset) + { + return Path.GetExtension(asset.Identity.TrimEnd(']')); + } +} + +public enum GroupComparisonMode +{ + // We require the same number of assets in a group for the baseline and the template. + Exact, + + // We won't fail when we check against the baseline if additional assets are present for a group. + AllowAdditionalAssets +} diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs new file mode 100644 index 000000000000..59f0ed397002 --- /dev/null +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs @@ -0,0 +1,280 @@ +// 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 Microsoft.AspNetCore.Razor.Tasks; + +namespace Microsoft.NET.Sdk.Razor.Tests; +public class StaticWebAssetsBaselineFactory +{ + public static StaticWebAssetsBaselineFactory Instance { get; } = new(); + + public IList KnownExtensions { get; } = new List() + { + // Keep this list of most specific to less specific + ".dll.gz", + ".dll.br", + ".dll", + ".wasm.gz", + ".wasm.br", + ".wasm", + ".js.gz", + ".js.br", + ".js", + ".html", + ".pdb", + }; + + public IList KnownFilePrefixesWithHashOrVersion { get; } = new List() + { + "dotnet" + }; + + public void ToTemplate( + StaticWebAssetsManifest manifest, + string projectRoot, + string restorePath, + string runtimeVersion, + string defaultTfm, + string defaultPackageVersion) + { + manifest.Hash = "__hash__"; + var assetsByIdentity = manifest.Assets.ToDictionary(a => a.Identity); + foreach (var asset in manifest.Assets) + { + TemplatizeAsset(projectRoot, restorePath, asset); + if (asset.AssetTraitName == "Content-Encoding") + { + var relativePath = asset.RelativePath.Replace('/', Path.DirectorySeparatorChar); + var identity = asset.Identity.Replace('\\', Path.DirectorySeparatorChar); + var originalItemSpec = asset.OriginalItemSpec.Replace('\\', Path.DirectorySeparatorChar); + + asset.Identity = Path.Combine(Path.GetDirectoryName(identity), relativePath); + asset.Identity = asset.Identity.Replace(Path.DirectorySeparatorChar, '\\'); + asset.OriginalItemSpec = Path.Combine(Path.GetDirectoryName(originalItemSpec), relativePath); + asset.OriginalItemSpec = asset.OriginalItemSpec.Replace(Path.DirectorySeparatorChar, '\\'); + } + else if ((asset.Identity.EndsWith(".gz") || asset.Identity.EndsWith(".br")) + && asset.AssetTraitName == "" && asset.RelatedAsset == "") + { + // Old .NET 5.0 implementation + var identity = asset.Identity.Replace('\\', Path.DirectorySeparatorChar); + var originalItemSpec = asset.OriginalItemSpec.Replace('\\', Path.DirectorySeparatorChar); + + asset.Identity = Path.Combine(Path.GetDirectoryName(identity), Path.GetFileName(originalItemSpec) + Path.GetExtension(identity)) + .Replace(Path.DirectorySeparatorChar, '\\'); + } + } + + foreach (var discovery in manifest.DiscoveryPatterns) + { + discovery.ContentRoot = discovery.ContentRoot.Replace(projectRoot, "${ProjectPath}"); + discovery.ContentRoot = discovery.ContentRoot.Replace(Path.DirectorySeparatorChar, '\\'); + + discovery.Name = discovery.Name.Replace(Path.DirectorySeparatorChar, '\\'); + discovery.Pattern = discovery.Pattern.Replace(Path.DirectorySeparatorChar, '\\'); + } + + foreach (var relatedManifest in manifest.ReferencedProjectsConfiguration) + { + relatedManifest.Identity = relatedManifest.Identity.Replace(projectRoot, "${ProjectPath}").Replace(Path.DirectorySeparatorChar, '\\'); + } + + // Sor everything now to ensure we produce stable baselines independent of the machine they were generated on. + Array.Sort(manifest.DiscoveryPatterns, (l, r) => StringComparer.Ordinal.Compare(l.Name, r.Name)); + Array.Sort(manifest.Assets, (l, r) => StringComparer.Ordinal.Compare(l.Identity, r.Identity)); + Array.Sort(manifest.ReferencedProjectsConfiguration, (l, r) => StringComparer.Ordinal.Compare(l.Identity, r.Identity)); + } + + private void TemplatizeAsset(string projectRoot, string restorePath, StaticWebAsset asset) + { + asset.Identity = TemplatizeFilePath( + asset.Identity, + restorePath, + projectRoot, + null, + null); + + asset.RelativePath = TemplatizeFilePath( + asset.RelativePath, + null, + null, + null, + null).Replace('\\', '/'); + + asset.ContentRoot = TemplatizeFilePath( + asset.ContentRoot, + restorePath, + projectRoot, + null, + null); + + asset.RelatedAsset = TemplatizeFilePath( + asset.RelatedAsset, + restorePath, + projectRoot, + null, + null); + + asset.OriginalItemSpec = TemplatizeFilePath( + asset.OriginalItemSpec, + restorePath, + projectRoot, + null, + null); + } + + internal IEnumerable TemplatizeExpectedFiles( + IEnumerable files, + string restorePath, + string projectPath, + string intermediateOutputPath, + string buildOrPublishFolder) + { + foreach (var file in files) + { + var updated = TemplatizeFilePath( + file, + restorePath, + projectPath, + intermediateOutputPath, + buildOrPublishFolder); + + yield return updated; + } + } + + public string TemplatizeFilePath( + string file, + string restorePath, + string projectPath, + string intermediateOutputPath, + string buildOrPublishFolder) + { + var updated = file switch + { + var processed when file.StartsWith("$") => processed, + var fromBuildOrPublishPath when buildOrPublishFolder is not null && file.StartsWith(buildOrPublishFolder) => + TemplatizeBuildOrPublishPath(buildOrPublishFolder, fromBuildOrPublishPath), + var fromIntermediateOutputPath when intermediateOutputPath is not null && file.StartsWith(intermediateOutputPath) => + TemplatizeIntermediatePath(intermediateOutputPath, fromIntermediateOutputPath), + var fromPackage when restorePath is not null && file.StartsWith(restorePath) => + TemplatizeNugetPath(restorePath, fromPackage), + var fromProject when projectPath is not null && file.StartsWith(projectPath) => + TemplatizeProjectPath(projectPath, fromProject), + _ => + ReplaceSegments(file, (i, segments) => i switch + { + 2 when segments[0] is "obj" or "bin" => "${Tfm}", + var last when i == segments.Length - 1 => RemovePossibleHash(segments[last]), + _ => segments[i] + }) + }; + + return updated.Replace('/', '\\'); + } + + private string TemplatizeBuildOrPublishPath(string outputPath, string file) + { + file = file.Replace(outputPath, "${OutputPath}") + .Replace('\\', '/'); + + file = ReplaceSegments(file, (i, segments) => i switch + { + _ when i == segments.Length - 1 => RemovePossibleHash(segments[i]), + _ => segments[i], + }); + + return file; + } + + private string TemplatizeIntermediatePath(string intermediatePath, string file) + { + file = file.Replace(intermediatePath, "${IntermediateOutputPath}") + .Replace('\\', '/'); + + file = ReplaceSegments(file, (i, segments) => i switch + { + 3 when segments[1] is "obj" or "bin" => "${Tfm}", + _ when i == segments.Length - 1 => RemovePossibleHash(segments[i]), + _ => segments[i] + }); + + return file; + } + + private string TemplatizeProjectPath(string projectPath, string file) + { + file = file.Replace(projectPath, "${ProjectPath}") + .Replace('\\', '/'); + + file = ReplaceSegments(file, (i, segments) => i switch + { + 3 when segments[1] is "obj" or "bin" => "${Tfm}", + 4 when segments[2] is "obj" or "bin" => "${Tfm}", + _ when i == segments.Length - 1 => RemovePossibleHash(segments[i]), + _ => segments[i] + }); + + return file; + } + + private string TemplatizeNugetPath(string restorePath, string file) + { + file = file.Replace(restorePath, "${RestorePath}") + .Replace('\\', '/'); + if (file.Contains("runtimes")) + { + file = ReplaceSegments(file, (i, segments) => i switch + { + 2 => "${RuntimeVersion}", + 6 when !file.Contains("native") => "${PackageTfm}", + _ when i == segments.Length - 1 => RemovePossibleHash(segments[i]), + _ => segments[i], + }); + } + else + { + file = ReplaceSegments(file, (i, segments) => i switch + { + 2 => "${PackageVersion}", + 4 => "${PackageTfm}", + _ when i == segments.Length - 1 => RemovePossibleHash(segments[i]), + _ => segments[i], + }); + } + + return file; + } + + private static string ReplaceSegments(string file, Func selector) + { + var segments = file.Split('\\', '/'); + var newSegments = new List(); + + // Segments have the following shape `${RestorePath}/PackageName/PackageVersion/lib/Tfm/dll`. + // We want to replace PackageVersion and Tfm with tokens so that they do not cause issues. + for (var i = 0; i < segments.Length; i++) + { + newSegments.Add(selector(i, segments)); + } + + return string.Join(Path.DirectorySeparatorChar, newSegments); + } + + private string RemovePossibleHash(string fileNameAndExtension) + { + var filename = KnownFilePrefixesWithHashOrVersion.FirstOrDefault(p => fileNameAndExtension.StartsWith(p)); + var extension = KnownExtensions.FirstOrDefault(f => fileNameAndExtension.EndsWith(f, StringComparison.OrdinalIgnoreCase)); + if (filename != null && extension != null) + { + fileNameAndExtension = filename + extension; + } + + return fileNameAndExtension; + } +} diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json index 679c1c0f096d..2cef6cc2c0b2 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json index 679c1c0f096d..2cef6cc2c0b2 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json index 24a619ee9bd7..f4c8f66bd27c 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json @@ -1,13 +1,23 @@ [ - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\AppWithPackageAndP2PReference.styles.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", + "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json index b4b48555f563..2fb37db5b18e 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json index 679c1c0f096d..2cef6cc2c0b2 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json index 301055e00750..d6709aec24ea 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json @@ -1,5 +1,4 @@ [ - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\AppWithPackageAndP2PReference.modules.json", "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json", "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json index 1fea5be4ddcd..49bd5e5fe48f 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "AnotherClassLib.lib.module.js", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -98,10 +98,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.modules.json", "AssetKind": "Build", @@ -115,10 +115,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -129,13 +129,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -146,13 +146,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\ClassLibrary.lib.module.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\ClassLibrary.lib.module.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.lib.module.js", "AssetKind": "All", @@ -166,10 +166,10 @@ "OriginalItemSpec": "wwwroot\\ClassLibrary.lib.module.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -183,10 +183,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -200,10 +200,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -214,15 +214,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -231,15 +231,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -248,13 +248,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -265,7 +265,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json index 679c1c0f096d..2cef6cc2c0b2 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json index 679c1c0f096d..2cef6cc2c0b2 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json index bcfcce298b51..c12a8d1875e1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 1, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 1, "Source": "ClassLibrary", "GetPublishAssetsTargets": "", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -61,13 +61,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css" + "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -78,13 +78,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js" + "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -129,13 +129,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -146,15 +146,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -163,15 +163,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,13 +180,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -197,7 +197,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json index 736470077589..9c56f2cfd1f1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json index 0f4981a916b8..5f31368b670b 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json @@ -1,5 +1,6 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\ComponentApp.styles.css", + "${OutputPath}\\wwwroot\\ComponentApp.styles.css", "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "${OutputPath}\\wwwroot\\ComponentApp.styles.css" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json index 7b4ed2b62568..f40268d995ee 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json index 86194d84495d..f190f8e85a21 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\Components\\Pages\\Counter.razor.js", + "Identity": "${ProjectPath}\\Components\\Pages\\Counter.razor.js", "SourceId": "ComponentApp", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\", + "ContentRoot": "${ProjectPath}\\", "BasePath": "_content/ComponentApp", "RelativePath": "Components/Pages/Counter.razor.js", "AssetKind": "All", @@ -26,10 +26,10 @@ "OriginalItemSpec": "Components\\Pages\\Counter.razor.js" }, { - "Identity": "${ProjectRoot}\\Pages\\Index.cshtml.js", + "Identity": "${ProjectPath}\\Pages\\Index.cshtml.js", "SourceId": "ComponentApp", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\", + "ContentRoot": "${ProjectPath}\\", "BasePath": "_content/ComponentApp", "RelativePath": "Pages/Index.cshtml.js", "AssetKind": "All", @@ -43,10 +43,10 @@ "OriginalItemSpec": "Pages\\Index.cshtml.js" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -57,13 +57,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -74,7 +74,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json index 736470077589..9c56f2cfd1f1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json index 736470077589..9c56f2cfd1f1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json index 736470077589..9c56f2cfd1f1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json index 290b644d3340..687f418e61a3 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json @@ -10,17 +10,17 @@ { "Name": "ComponentApp\\wwwroot", "Source": "ComponentApp", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "_content/ComponentApp", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -31,13 +31,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -48,13 +48,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\wwwroot\\index.html", + "Identity": "${ProjectPath}\\wwwroot\\index.html", "SourceId": "ComponentApp", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "_content/ComponentApp", "RelativePath": "index.html", "AssetKind": "All", diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json index 736470077589..9c56f2cfd1f1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json index 2a6d73811719..ce950594535b 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json index 9253d86e0fbf..a3fd32397f7d 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json @@ -9,5 +9,15 @@ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json index f8a2158f6c98..578ba05d8229 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json index 10f27783770a..f9be57acbf77 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.build.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.build.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "AnotherClassLib.lib.module.js", "AssetKind": "Build", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.build.js" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -98,10 +98,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.modules.json", "AssetKind": "Build", @@ -115,10 +115,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -129,13 +129,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -146,13 +146,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -166,10 +166,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -183,10 +183,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -197,15 +197,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -214,15 +214,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -231,13 +231,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -248,7 +248,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json index 913dcc094adb..4c644e2b9842 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json @@ -1,16 +1,15 @@ [ - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\AppWithPackageAndP2PReference.modules.json", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\AppWithPackageAndP2PReference.styles.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\AnotherClassLib.lib.module.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\AppWithPackageAndP2PReference.modules.json", - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.modules.json", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\AnotherClassLib.lib.module.js", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json index 4dfa981cd76b..a420a54142d0 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "AnotherClassLib.lib.module.js", "AssetKind": "Publish", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -98,10 +98,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.modules.json", "AssetKind": "Publish", @@ -115,10 +115,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -129,13 +129,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -146,13 +146,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -166,10 +166,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -183,10 +183,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -197,15 +197,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -214,15 +214,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -231,13 +231,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -248,7 +248,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json index 679c1c0f096d..2cef6cc2c0b2 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json index 24a619ee9bd7..f4c8f66bd27c 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json @@ -1,13 +1,23 @@ [ - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\AppWithPackageAndP2PReference.styles.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", + "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json index b4b48555f563..2fb37db5b18e 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json index 5be4a5a61c17..54a99754d358 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "AnotherClassLib.lib.module.js", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -98,10 +98,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.modules.json", "AssetKind": "Build", @@ -115,10 +115,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -129,13 +129,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -146,13 +146,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\AnotherClassLib.lib.module.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\AnotherClassLib.lib.module.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "AnotherClassLib.lib.module.js", "AssetKind": "All", @@ -166,10 +166,10 @@ "OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -183,10 +183,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -200,10 +200,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -214,15 +214,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -231,15 +231,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -248,13 +248,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -265,7 +265,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json index a86fe49ab10a..9902bb2c4778 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json @@ -1,17 +1,30 @@ [ - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\AppWithPackageAndP2PReference.modules.json", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\AppWithPackageAndP2PReference.styles.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\AnotherClassLib.lib.module.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\AnotherClassLib.lib.module.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.modules.json", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\AnotherClassLib.lib.module.js", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\AnotherClassLib.lib.module.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.modules.json", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\AnotherClassLib.lib.module.js", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\AnotherClassLib.lib.module.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json index 784ab9354b2f..5a18e36bee46 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "AnotherClassLib.lib.module.js", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -98,10 +98,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.modules.json", "AssetKind": "Publish", @@ -115,10 +115,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -129,13 +129,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -146,13 +146,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\AnotherClassLib.lib.module.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\AnotherClassLib.lib.module.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "AnotherClassLib.lib.module.js", "AssetKind": "All", @@ -166,10 +166,10 @@ "OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -183,10 +183,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -200,10 +200,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -214,15 +214,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -231,15 +231,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -248,13 +248,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -265,7 +265,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json index 679c1c0f096d..2cef6cc2c0b2 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json index 339667a2d269..f6aca7d96983 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json @@ -1,13 +1,13 @@ [ - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json index b4b48555f563..2fb37db5b18e 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json index 679c1c0f096d..2cef6cc2c0b2 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json index 24a619ee9bd7..f4c8f66bd27c 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json @@ -1,13 +1,23 @@ [ - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\AppWithPackageAndP2PReference.styles.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", + "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json index b4b48555f563..2fb37db5b18e 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 2, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 2, "Source": "ClassLibrary", "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -64,10 +64,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -81,10 +81,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -132,10 +132,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -149,10 +149,10 @@ "OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json index bcfcce298b51..c12a8d1875e1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 1, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 1, "Source": "ClassLibrary", "GetPublishAssetsTargets": "", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -61,13 +61,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css" + "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -78,13 +78,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js" + "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -129,13 +129,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -146,15 +146,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -163,15 +163,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,13 +180,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -197,7 +197,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json index a7074e542417..db44ba205551 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json @@ -1,16 +1,25 @@ [ - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\AppWithPackageAndP2PReference.styles.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\js\\project-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\js\\project-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\js\\project-transitive-dep.v4.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", + "${OutputPath}\\wwwroot\\css\\site.css", + "${OutputPath}\\wwwroot\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\js\\project-transitive-dep.v4.js", + "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json index 0a3909c631c0..004169afda18 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 1, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 1, "Source": "ClassLibrary", "GetPublishAssetsTargets": "", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -61,13 +61,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css" + "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -78,13 +78,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js" + "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -129,13 +129,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -146,15 +146,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -163,15 +163,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,13 +180,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -197,7 +197,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json index 736470077589..9c56f2cfd1f1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json index 0f4981a916b8..5f31368b670b 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json @@ -1,5 +1,6 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\ComponentApp.styles.css", + "${OutputPath}\\wwwroot\\ComponentApp.styles.css", "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "${OutputPath}\\wwwroot\\ComponentApp.styles.css" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json index 7b4ed2b62568..f40268d995ee 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json index 736470077589..9c56f2cfd1f1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json index 906cc33a6abd..beb43eeda9e8 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json @@ -1,5 +1,5 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\ComponentApp.styles.css", "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "${OutputPath}\\wwwroot\\ComponentApp.styles.css" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json index 7b4ed2b62568..f40268d995ee 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json index 736470077589..9c56f2cfd1f1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json index 0f4981a916b8..5f31368b670b 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json @@ -1,5 +1,6 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\ComponentApp.styles.css", + "${OutputPath}\\wwwroot\\ComponentApp.styles.css", "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "${OutputPath}\\wwwroot\\ComponentApp.styles.css" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json index 7b4ed2b62568..f40268d995ee 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json index c258d76ffe1d..34086ef82717 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json @@ -1,8 +1,11 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\ComponentApp.lib.module.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\ComponentApp.modules.json", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\ComponentApp.styles.css", + "${OutputPath}\\wwwroot\\ComponentApp.lib.module.js", + "${OutputPath}\\wwwroot\\ComponentApp.modules.json", + "${OutputPath}\\wwwroot\\ComponentApp.styles.css", "${ProjectPath}\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "${OutputPath}\\wwwroot\\ComponentApp.lib.module.js", + "${OutputPath}\\wwwroot\\ComponentApp.modules.json", + "${OutputPath}\\wwwroot\\ComponentApp.styles.css" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json index d5ca834ea522..c4a5e94f358e 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json @@ -10,17 +10,17 @@ { "Name": "ComponentApp\\wwwroot", "Source": "ComponentApp", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "_content/ComponentApp", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\jsmodules\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\jsmodules\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.modules.json", "AssetKind": "Publish", @@ -34,10 +34,10 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -48,13 +48,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -65,13 +65,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\wwwroot\\ComponentApp.lib.module.js", + "Identity": "${ProjectPath}\\wwwroot\\ComponentApp.lib.module.js", "SourceId": "ComponentApp", "SourceType": "Discovered", - "ContentRoot": "${ProjectRoot}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.lib.module.js", "AssetKind": "All", diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json index 736470077589..9c56f2cfd1f1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json index 736470077589..9c56f2cfd1f1 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json @@ -9,10 +9,10 @@ "DiscoveryPatterns": [], "Assets": [ { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.styles.css", "AssetKind": "All", @@ -23,13 +23,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css" }, { - "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css", "SourceId": "ComponentApp", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ComponentApp", "RelativePath": "ComponentApp.bundle.scp.css", "AssetKind": "All", @@ -40,7 +40,7 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json index 72088b5f49ba..4a54f4a20ae8 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json @@ -1,3 +1,3 @@ [ - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "${IntermediateOutputPath}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json index 0573d12532da..4963133ae682 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Build", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 1, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 1, "Source": "ClassLibrary", "GetPublishAssetsTargets": "", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -61,13 +61,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css" + "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -78,13 +78,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js" + "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -129,13 +129,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -146,13 +146,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json index a43fe3299228..d56454992b34 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json @@ -1,17 +1,27 @@ [ - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\AppWithPackageAndP2PReference.styles.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\css\\site.css", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\js\\project-direct-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\js\\project-transitive-dep.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\js\\project-transitive-dep.v4.js", - "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js", + "${OutputPath}\\wwwroot\\css\\site.css", + "${OutputPath}\\wwwroot\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\js\\project-transitive-dep.v4.js", + "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js", + "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js", + "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js" ] \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json index 636c7b157cf0..dcdf2d00b7ca 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json @@ -7,7 +7,7 @@ "ManifestType": "Publish", "ReferencedProjectsConfiguration": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj", + "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj", "Version": 1, "Source": "AnotherClassLib", "GetPublishAssetsTargets": "", @@ -18,7 +18,7 @@ "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj", + "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj", "Version": 1, "Source": "ClassLibrary", "GetPublishAssetsTargets": "", @@ -33,24 +33,24 @@ { "Name": "AnotherClassLib\\wwwroot", "Source": "AnotherClassLib", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "Pattern": "**" }, { "Name": "ClassLibrary\\wwwroot", "Source": "ClassLibrary", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "Pattern": "**" } ], "Assets": [ { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "css/site.css", "AssetKind": "All", @@ -61,13 +61,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css" + "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css" }, { - "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", + "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js", "SourceId": "AnotherClassLib", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\", "BasePath": "_content/AnotherClassLib", "RelativePath": "js/project-direct-dep.js", "AssetKind": "All", @@ -78,13 +78,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js" + "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js" }, { - "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", + "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css", "SourceId": "AppWithPackageAndP2PReference", "SourceType": "Computed", - "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "_content/AppWithPackageAndP2PReference", "RelativePath": "AppWithPackageAndP2PReference.styles.css", "AssetKind": "All", @@ -95,13 +95,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" + "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", + "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "_content/ClassLibrary", "RelativePath": "ClassLibrary.bundle.scp.css", "AssetKind": "All", @@ -112,13 +112,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.js", "AssetKind": "All", @@ -129,13 +129,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js" }, { - "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", + "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js", "SourceId": "ClassLibrary", "SourceType": "Project", - "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\", "BasePath": "_content/ClassLibrary", "RelativePath": "js/project-transitive-dep.v4.js", "AssetKind": "All", @@ -146,13 +146,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js" + "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", "RelativePath": "PackageLibraryDirectDependency.bundle.scp.css", "AssetKind": "All", @@ -163,15 +163,15 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "css/site.css", + "RelativePath": "js/pkg-direct-dep.js", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -180,15 +180,15 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js" }, { - "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js", + "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css", "SourceId": "PackageLibraryDirectDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryDirectDependency", - "RelativePath": "js/pkg-direct-dep.js", + "RelativePath": "css/site.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -197,13 +197,13 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css" }, { - "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js", + "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js", "SourceId": "PackageLibraryTransitiveDependency", "SourceType": "Package", - "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\", + "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}", "BasePath": "_content/PackageLibraryTransitiveDependency", "RelativePath": "js/pkg-transitive-dep.js", "AssetKind": "All", @@ -214,7 +214,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js" + "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js" } ] } \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs index ba47a20300a6..4d64b0cbc96b 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs @@ -1,22 +1,20 @@ // 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.Collections.Generic; using System.IO; +using System.Linq; using System.Runtime.InteropServices; +using System.Xml.Linq; using FluentAssertions; using Microsoft.AspNetCore.Razor.Tasks; +using Microsoft.NET.TestFramework; using Microsoft.NET.TestFramework.Assertions; using Microsoft.NET.TestFramework.Commands; +using Microsoft.NET.TestFramework.Utilities; using Xunit; using Xunit.Abstractions; -using System.Linq; -using System.Diagnostics; -using System.Xml.Linq; -using NuGet.Packaging; -using System; -using System.Collections.Generic; -using Microsoft.NET.TestFramework.Utilities; -using Microsoft.NET.TestFramework; namespace Microsoft.NET.Sdk.Razor.Tests { @@ -49,8 +47,9 @@ public void Build_GeneratesJsonManifestAndCopiesItToOutputFolder() var finalPath = Path.Combine(outputPath, "ComponentApp.staticwebassets.runtime.json"); new FileInfo(finalPath).Should().Exist(); - AssertManifest(StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), expectedManifest); - AssertBuildAssets(StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), outputPath, intermediateOutputPath); + var manifest1 = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))); + AssertManifest(manifest1, expectedManifest); + AssertBuildAssets(manifest1, outputPath, intermediateOutputPath); } [Fact] @@ -116,7 +115,8 @@ public void Build_UpdatesManifest_WhenFilesChange() var originalObjFile = new FileInfo(path); originalObjFile.Should().Exist(); var objManifestContents = File.ReadAllText(Path.Combine(intermediateOutputPath, "staticwebassets.build.json")); - AssertManifest(StaticWebAssetsManifest.FromJsonString(objManifestContents), LoadBuildManifest()); + var firstManifest = StaticWebAssetsManifest.FromJsonString(objManifestContents); + AssertManifest(firstManifest, LoadBuildManifest()); // GenerateStaticWebAssetsManifest should copy the file to the output folder. var finalPath = Path.Combine(outputPath, "ComponentApp.staticwebassets.runtime.json"); @@ -125,7 +125,7 @@ public void Build_UpdatesManifest_WhenFilesChange() var binManifestContents = File.ReadAllText(finalPath); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonString(objManifestContents), + firstManifest, outputPath, intermediateOutputPath); @@ -140,8 +140,9 @@ public void Build_UpdatesManifest_WhenFilesChange() var secondObjFile = new FileInfo(secondPath); secondObjFile.Should().Exist(); var secondObjManifest = File.ReadAllText(secondPath); + var secondManifest = StaticWebAssetsManifest.FromJsonString(secondObjManifest); AssertManifest( - StaticWebAssetsManifest.FromJsonString(secondObjManifest), + secondManifest, LoadBuildManifest("Updated"), "Updated"); @@ -158,7 +159,7 @@ public void Build_UpdatesManifest_WhenFilesChange() secondFinalFile.LastWriteTimeUtc.Should().NotBe(originalFile.LastWriteTimeUtc); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonString(secondObjManifest), + secondManifest, outputPath, intermediateOutputPath, "Updated"); @@ -182,19 +183,17 @@ public void BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputF // GenerateStaticWebAssetsManifest should generate the manifest file. var path = Path.Combine(intermediateOutputPath, "staticwebassets.build.json"); new FileInfo(path).Should().Exist(); + var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, LoadBuildManifest()); // GenerateStaticWebAssetsManifest should copy the file to the output folder. var finalPath = Path.Combine(outputPath, "AppWithPackageAndP2PReference.staticwebassets.runtime.json"); new FileInfo(finalPath).Should().Exist(); - AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), - LoadBuildManifest()); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), + manifest, outputPath, intermediateOutputPath); } @@ -236,19 +235,20 @@ public void BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries( // GenerateStaticWebAssetsManifest should generate the manifest file. var path = Path.Combine(intermediateOutputPath, "staticwebassets.build.json"); new FileInfo(path).Should().Exist(); + var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifest, LoadBuildManifest()); // GenerateStaticWebAssetsManifest should copy the file to the output folder. var finalPath = Path.Combine(outputPath, "AppWithPackageAndP2PReference.staticwebassets.runtime.json"); new FileInfo(finalPath).Should().Exist(); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), + manifest, LoadBuildManifest()); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), + manifest, outputPath, intermediateOutputPath); } @@ -304,12 +304,13 @@ public void PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibrarie // GenerateStaticWebAssetsPublishManifest should generate the publish manifest file. var intermediatePublishManifestPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"); new FileInfo(path).Should().Exist(); + var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, publishPath, intermediateOutputPath); } @@ -337,9 +338,10 @@ public void BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCo // GenerateStaticWebAssetsManifest should copy the file to the output folder. var finalPath = Path.Combine(outputPath, "AppWithPackageAndP2PReference.staticwebassets.runtime.json"); new FileInfo(finalPath).Should().Exist(); - var manifest = File.ReadAllText(finalPath); + var manifestContents = File.ReadAllText(finalPath); + var initialManifest = StaticWebAssetsManifest.FromJsonString(File.ReadAllText(path)); AssertManifest( - StaticWebAssetsManifest.FromJsonString(File.ReadAllText(path)), + initialManifest, LoadBuildManifest()); // Second build @@ -348,26 +350,28 @@ public void BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCo // GenerateStaticWebAssetsManifest should generate the manifest file. new FileInfo(path).Should().Exist(); + var manifestNoDeps = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)), + manifestNoDeps, LoadBuildManifest("NoDependencies"), "NoDependencies"); // GenerateStaticWebAssetsManifest should copy the file to the output folder. new FileInfo(finalPath).Should().Exist(); + var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), + manifest, LoadBuildManifest("NoDependencies"), "NoDependencies"); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), + manifest, outputPath, intermediateOutputPath, "NoDependencies"); // Check that the two manifests are the same - manifest.Should().Be(File.ReadAllText(finalPath)); + manifestContents.Should().Be(File.ReadAllText(finalPath)); } // Rebuild @@ -403,13 +407,14 @@ public void Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder() var secondPath = Path.Combine(intermediateOutputPath, "staticwebassets.build.json"); var secondObjFile = new FileInfo(secondPath); secondObjFile.Should().Exist(); - var secondObjManifest = File.ReadAllText(secondPath); + var secondObjManifestContents = File.ReadAllText(secondPath); + var secondManifest = StaticWebAssetsManifest.FromJsonString(secondObjManifestContents); AssertManifest( - StaticWebAssetsManifest.FromJsonString(secondObjManifest), + secondManifest, LoadBuildManifest("Rebuild"), "Rebuild"); - secondObjManifest.Should().Be(objManifestContents); + secondObjManifestContents.Should().Be(objManifestContents); // GenerateStaticWebAssetsManifest should copy the file to the output folder. var secondFinalPath = Path.Combine(outputPath, "ComponentApp.staticwebassets.runtime.json"); @@ -422,7 +427,7 @@ public void Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder() secondFinalFile.LastWriteTimeUtc.Should().NotBe(originalFile.LastWriteTimeUtc); AssertBuildAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), + secondManifest, outputPath, intermediateOutputPath, "Rebuild"); @@ -458,7 +463,7 @@ public void Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets() AssertManifest(publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, publishPath, intermediateOutputPath); } @@ -489,12 +494,13 @@ public void Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPubli // GenerateStaticWebAssetsManifest should generate the publish manifest file. var intermediatePublishManifestPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"); new FileInfo(path).Should().Exist(); + var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, publishPath, intermediateOutputPath); } @@ -555,12 +561,13 @@ public void Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets() // GenerateStaticWebAssetsManifest should generate the publish manifest file. var intermediatePublishManifestPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"); new FileInfo(path).Should().Exist(); + var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, publishPath, intermediateOutputPath); } @@ -595,7 +602,7 @@ public void Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAsse AssertManifest(publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, Path.Combine(outputPath, "publish"), intermediateOutputPath); } @@ -630,12 +637,13 @@ public void PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPu // GenerateStaticWebAssetsPublishManifest should generate the publish manifest file. var intermediatePublishManifestPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"); new FileInfo(path).Should().Exist(); + var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, publishPath, intermediateOutputPath); } @@ -670,7 +678,7 @@ public void PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonM AssertManifest(publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, publishPath, intermediateOutputPath); } @@ -736,7 +744,7 @@ public void PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAnd AssertManifest(publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, publishPath, intermediateOutputPath); } @@ -771,12 +779,13 @@ public void PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_ // GenerateStaticWebAssetsPublishManifest should generate the publish manifest file. var intermediatePublishManifestPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"); new FileInfo(path).Should().Exist(); + var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)); AssertManifest( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, publishPath, intermediateOutputPath); } @@ -812,7 +821,7 @@ public void BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifes AssertManifest(publishManifest, LoadPublishManifest()); AssertPublishAssets( - StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)), + publishManifest, Path.Combine(outputPath, "publish"), intermediateOutputPath); } From c4deeb319955820b63f74fc22d9659d4404a7cd5 Mon Sep 17 00:00:00 2001 From: jacalvar Date: Fri, 18 Nov 2022 20:54:34 +0100 Subject: [PATCH 12/13] Update TFMs in some projects and tests --- .../PackageLibraryDirectDependency.csproj | 2 +- .../PackageLibraryTransitiveDependency.csproj | 2 +- .../PackageLibraryNoStaticAssets.csproj | 2 +- .../PackageLibraryTransitiveDependency.csproj | 2 +- .../StaticWebAssetsIntegrationTest.cs | 12 ++++++------ 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/PackageLibraryDirectDependency.csproj b/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/PackageLibraryDirectDependency.csproj index 844ae4eb6f8e..231823edc8c7 100644 --- a/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/PackageLibraryDirectDependency.csproj +++ b/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/PackageLibraryDirectDependency.csproj @@ -5,7 +5,7 @@ - $(AspNetTestTfm) + net8.0 © Microsoft Razor Test Microsoft diff --git a/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj b/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj index d8f5a6c3f523..1da2577afcc2 100644 --- a/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj +++ b/src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj @@ -5,7 +5,7 @@ - $(AspNetTestTfm) + net8.0 © Microsoft Razor Test Microsoft diff --git a/src/Assets/TestPackages/PackageLibraryNoStaticAssets/PackageLibraryNoStaticAssets.csproj b/src/Assets/TestPackages/PackageLibraryNoStaticAssets/PackageLibraryNoStaticAssets.csproj index cdb1bcc81c7d..c65be45a61e3 100644 --- a/src/Assets/TestPackages/PackageLibraryNoStaticAssets/PackageLibraryNoStaticAssets.csproj +++ b/src/Assets/TestPackages/PackageLibraryNoStaticAssets/PackageLibraryNoStaticAssets.csproj @@ -5,7 +5,7 @@ - net7.0 + net8.0 © Microsoft Razor Test Microsoft diff --git a/src/Assets/TestPackages/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj b/src/Assets/TestPackages/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj index 8eb44392ccf2..1da2577afcc2 100644 --- a/src/Assets/TestPackages/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj +++ b/src/Assets/TestPackages/PackageLibraryTransitiveDependency/PackageLibraryTransitiveDependency.csproj @@ -5,7 +5,7 @@ - net7.0 + net8.0 © Microsoft Razor Test Microsoft diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs index 4d64b0cbc96b..20c6a61b81e4 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs @@ -2195,12 +2195,12 @@ public void Pack_MultipleTargetFrameworks_WithScopedCssAndJsModules_IncludesAsse var parse = XDocument.Parse($@" - {ToolsetInfo.CurrentTargetFramework};net6.0;net5.0 + net8.0;{ToolsetInfo.CurrentTargetFramework};net6.0;net5.0 enable - + @@ -2272,12 +2272,12 @@ public void Pack_Incremental_MultipleTargetFrameworks_WithScopedCssAndJsModules_ var parse = XDocument.Parse($@" - {ToolsetInfo.CurrentTargetFramework};net6.0;net5.0 + net8.0;{ToolsetInfo.CurrentTargetFramework};net6.0;net5.0 enable - + @@ -2351,12 +2351,12 @@ public void Pack_MultipleTargetFrameworks_WithScopedCssAndJsModules_DoesNotInclu var parse = XDocument.Parse($@" - {ToolsetInfo.CurrentTargetFramework};net6.0;net5.0 + net8.0;{ToolsetInfo.CurrentTargetFramework};net6.0;net5.0 enable - + From 6bc8dafedc42cbceff7bdf0a7415e46951d6f3ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Matou=C5=A1ek?= Date: Fri, 18 Nov 2022 13:52:29 -0600 Subject: [PATCH 13/13] Avoid potential NRE (#29128) --- src/BuiltInTools/dotnet-watch/HotReloadDotNetWatcher.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/BuiltInTools/dotnet-watch/HotReloadDotNetWatcher.cs b/src/BuiltInTools/dotnet-watch/HotReloadDotNetWatcher.cs index 8318860855c0..8eea61828e14 100644 --- a/src/BuiltInTools/dotnet-watch/HotReloadDotNetWatcher.cs +++ b/src/BuiltInTools/dotnet-watch/HotReloadDotNetWatcher.cs @@ -307,8 +307,12 @@ private void ConfigureExecutable(DotNetWatchContext context, ProcessSpec process processSpec.EnvironmentVariables["ASPNETCORE_URLS"] = context.LaunchSettingsProfile.ApplicationUrl; } - var rootVariableName = Environment.Is64BitProcess ? "DOTNET_ROOT" : "DOTNET_ROOT(x86)"; - if (string.IsNullOrEmpty(Environment.GetEnvironmentVariable(rootVariableName))) + var rootVariableName = EnvironmentVariableNames.TryGetDotNetRootVariableName( + project.RuntimeIdentifier ?? "", + project.DefaultAppHostRuntimeIdentifier ?? "", + project.TargetFrameworkVersion); + + if (rootVariableName != null && string.IsNullOrEmpty(Environment.GetEnvironmentVariable(rootVariableName))) { processSpec.EnvironmentVariables[rootVariableName] = Path.GetDirectoryName(_muxerPath); }